-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseven.html
More file actions
24 lines (23 loc) · 807 Bytes
/
seven.html
File metadata and controls
24 lines (23 loc) · 807 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Id and Classes</title>
</head>
<body>
<div id="mainbox" class="redBg blackborder">
this is a class
</div>
<!-- emmet -->
<!-- . is for class and # for id -->
<span class="redBg"></span>
<div class="redBg"></div>
<span id="span"></span>
<div class="redbg blackborder"></div>
<!-- emmet takes div tag as default -->
<div class="redbg">vhjkfher</div>
<!-- creating multiple elements using emmet -->
<span class="myclass myclass1 myclass"></span><span class="myclass myclass1 myclass"></span><span class="myclass myclass1 myclass"></span><span class="myclass myclass1 myclass"></span>
</body>
</html>