-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut10.html
More file actions
38 lines (30 loc) · 1.24 KB
/
tut10.html
File metadata and controls
38 lines (30 loc) · 1.24 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
<!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>Ids and Classes in HTML</title>
</head>
<body>
<!-- Practice on Emmet -->
<!-- Using vscode shortcut -->
<!-- important..!! -->
<!-- You can create multiple class with same name -->
<!-- But you will not able to create id as a same name -->
<!-- You can generate class just type: span.className -->
<span class="hello"></span>
<!-- Also you can add multiple class Like: div.firstClass.secondClass -->
<div class="firstClass secondClass"></div>
<!-- Also you can generate div using . -->
<div class="chintan"></div>
<!-- You can generate ids just type: span#idName -->
<span id="name"></span>
<!-- Create multiple elements using Emmet -->
<!-- span.myClass.otherClass.anotherClass*4 enter and TAB for go to next class -->
<span class="myClass otherClass anotherClass">First</span>
<span class="myClass otherClass anotherClass">Second</span>
<span class="myClass otherClass anotherClass">Third</span>
<span class="myClass otherClass anotherClass">Fourth </span>
</body>
</html>