-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathid_n_classes.html
More file actions
28 lines (24 loc) · 783 Bytes
/
id_n_classes.html
File metadata and controls
28 lines (24 loc) · 783 Bytes
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
<!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>
<div class="myClass myClass2" id="main_id">
hey everyone
</div>
<div id="my_id2" class="myClass myClass2">
I'm here
</div>
<!-- Created by using emmit feature - div.myClass.myClass2#main_div*2 -->
<!-- . is used to set classes elements.
# is used to set id of elements -->
<h1 class="myHadding myHadding2">First</h1>
<h1 class="myHadding myHadding2">Second</h1>
<h1 class="myHadding myHadding2">Third</h1>
<h1 class="myHadding myHadding2">Fourth</h1>
</body>
</html>