-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSome Emmets Shortcut.html
More file actions
50 lines (45 loc) · 1.07 KB
/
Some Emmets Shortcut.html
File metadata and controls
50 lines (45 loc) · 1.07 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Some Emmets Shortcut</title>
</head>
<body>
<!-- li*4 will create 4 li-->
<li></li>
<li></li>
<li></li>
<li></li>
<!-- ul>li*4 will create this-->
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<!-- ul>li*4>a will create this-->
<ul>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
<!-- ul.dropdown will create this-->
<ul class="dropdown"></ul>
<!-- ul.drop#user will create this-->
<ul class="drop" id="user"></ul>
<!-- main>article.blog*3>h1{My Blog} will create this-->
<main>
<article class="blog">
<h1>My Blog</h1>
</article>
<article class="blog">
<h1>My Blog</h1>
</article>
<article class="blog">
<h1>My Blog</h1>
</article>
</main>
</body>
</html>