vsCode Emmet cheatsheet

Boilerplate

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″ />
<title>Document /title>
/head>
<body>

</body>
</html>

basic elements

1) secti…


This content originally appeared on DEV Community and was authored by computer_geek77

Boilerplate

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8" />
 <title>Document /title>
/head>
<body>

</body>
</html>

basic elements

1) section

<section> </section>

2) .example

<div class="example"> </div>

3) section#intro

<section id="intro"> </section>

4) p>lorem10

<p>Lorem ipsum dolor sit amet
consectetur adipisicing elit. Neque,
facere? </p>

5) section#intro>.container

<section id="intro">
 <div class="container">
 </div>
</section>

6) p{your custom text}

<p>your custom text </p>

7) link:css

<link rel="stylesheet" href="style.css">

8) script:src

<script src=""> </script>

9) h3+p+p

<h3> </h3>
<p> </p>
<p> </p>

10) ul>li*3^p*3

<ul>
 <li> </li>
 <li> </li>
 <li> </li>
</ul>
<p> </p>
<p> </p>
<p> </p>

11) ul>li*4

<ul>
 <li> </li>
 <li> </li>
 <li> </li>
 <li> </li>
</ul>

12) h3+(ul>li*3)+h3

<h3> </h3>
<ul>
 <li> </li>
 <li> </li>
 <li> </li>
</ul>
<h3> </h3>

13) li.list-item-$*3

<li class="list-item-1"> </li>
<li class="list-item-2"> </li>
<li class="list-item-3"> </li>


This content originally appeared on DEV Community and was authored by computer_geek77


Print Share Comment Cite Upload Translate Updates
APA

computer_geek77 | Sciencx (2021-08-02T12:54:09+00:00) vsCode Emmet cheatsheet. Retrieved from https://www.scien.cx/2021/08/02/vscode-emmet-cheatsheet/

MLA
" » vsCode Emmet cheatsheet." computer_geek77 | Sciencx - Monday August 2, 2021, https://www.scien.cx/2021/08/02/vscode-emmet-cheatsheet/
HARVARD
computer_geek77 | Sciencx Monday August 2, 2021 » vsCode Emmet cheatsheet., viewed ,<https://www.scien.cx/2021/08/02/vscode-emmet-cheatsheet/>
VANCOUVER
computer_geek77 | Sciencx - » vsCode Emmet cheatsheet. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/08/02/vscode-emmet-cheatsheet/
CHICAGO
" » vsCode Emmet cheatsheet." computer_geek77 | Sciencx - Accessed . https://www.scien.cx/2021/08/02/vscode-emmet-cheatsheet/
IEEE
" » vsCode Emmet cheatsheet." computer_geek77 | Sciencx [Online]. Available: https://www.scien.cx/2021/08/02/vscode-emmet-cheatsheet/. [Accessed: ]
rf:citation
» vsCode Emmet cheatsheet | computer_geek77 | Sciencx | https://www.scien.cx/2021/08/02/vscode-emmet-cheatsheet/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.