-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
29 lines (29 loc) · 832 Bytes
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!-- ! plus tab to generate html skeleton -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<!-- Emmet has lots of great shortcuts -->
<!-- emmet shortcut for adding classes and id's -->
<!-- h1#special.heading -->
<h1 id="special" class="heading"></h1>
<!-- h1.heading*5 -->
<h1 class="heading"></h1>
<h1 class="heading"></h1>
<h1 class="heading"></h1>
<h1 class="heading"></h1>
<h1 class="heading"></h1>
<!-- .hello plus tab creates a div with class hello (div is the default tag) -->
<div class="hello"></div>
<!-- div>ul>li>a -->
<div>
<ul>
<li><a href=""></a></li>
</ul>
</div>
</body>
</html>