-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemmet.html
More file actions
89 lines (79 loc) · 2.11 KB
/
Copy pathemmet.html
File metadata and controls
89 lines (79 loc) · 2.11 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<!--1.EMMET 1.Elementos simples h1+h2+p-->
<h1></h1>
<h2></h2>
<p></p>
<!--2.Elementos con contenido h1{Soy un título}+p{y yo soy un párrafo}-->
<h1>Soy un título</h1>
<p>y yo soy un párrafo</p>
<!--3. Anidamiento simple h1>mark-->
<h1>
<mark></mark>
</h1>
<!--4.Anidamiento con contenido h1>mark{El texto subrayado}-->
<h1>
<mark>El texto subrayado</mark>
</h1>
<!--5.Anidamiento con multiples elementos ul>li*5-->
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<!--6.Anidamiento con múltiples elementos y contenidos ul>li{Elemento}*5-->
<ul>
<li>elemento</li>
<li>elemento</li>
<li>elemento</li>
<li>elemento</li>
<li>elemento</li>
</ul>
<!--EMMET 2
1.Tablas table>tr>td*3-->
<table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<!--2.Tablas y agrupaciones table>(tr>th*3)+(tr>td*3)-->
<table>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<!--EMMET 3
1.Clases and ID table#super-table>tr>td*3.table-data-->
<table id="super-table">
<tr>
<td class="table-data"></td>
<td class="table-data"></td>
<td class="table-data"></td>
</tr>
</table>
<!--2.Formularios form:get[action="/action_page.php"]>label[for="fname"]{First name:}+input#fname[name="fname"]+input:s[value="submit"]-->
<form action="/action_page.php" method="get">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"/>
<input type="submit" value="submit"/>
</form>
</body>
</html>