Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html writing shortcuts

div#div-id <!-- Create a div element with the id: div-id --> 
div.div-class <!-- Create a div element with the class: div-class -->
div*10 <!-- Create 10 div elements -->
div{CSS} <!-- Create a div element with innerHTML: 'CSS' -->
div+span <!-- Create a div element and a span element -->
div>div <!-- Create a parent div element with a child div element -->
div[onclick] <!-- Create a div element with the onclick attribute -->
$ <!-- When you combine it with the innerHTML & multiply or with --> 
  <!-- the id & class shortcuts it's really useful -->

<!-- Example --> div#div-${$}*3
<div id="div-1">1</div>
<div id="div-2">2</div>
<div id="div-3">3</div>

<!-- You can also combine them: -->
div#ABC.div-class>span{This is how to save time when coding HTML}+p{shortcuts}

<!-- this will generate: -->
<div id="ABC" class="div-class">
  <span>This is how to save time when coding HTML</span>
  <p>shortcuts</p>
</div>

<!-- These shortcuts work in VScode and for other code editors im not sure -->
Comment

html shortcut

write "!" and then this will show hint for HTML code then press "Enter" button to make starter template of HTML
Comment

PREVIOUS NEXT
Code Example
Html :: alpine js click preventdefault 
Html :: centering in html 
Html :: Chakra ui center content table 
Html :: html download file from server to client 
Html :: difference between xhtml and html 
Html :: html input autocomplete=off not working 
Html :: html table title 
Html :: bootstrap cdn 
Html :: how to make an image link on html 
Html :: html link confirm 
Html :: how to draw a small line in html 
Html :: bootstrap start 
Html :: html css javascript free online course 
Html :: bootstrap soft corner 
Html :: tailwind nth child odd even 
Html :: markdown to html 
Html :: how to use different font size in same line in html 
Html :: search button 
Html :: basic html template 
Html :: etiquetas formularios html 
Html :: html heading elements 
Html :: how to increase font size in html 
Html :: html to xml 
Html :: px in react is different from html file 
Html :: input type on click submit buttom show 
Html :: ionic select 
Html :: input type tel 
Html :: html meta redirect to another page 
Html :: import html display 
Html :: muted not working in video tag angular 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =