-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1 div.html
More file actions
35 lines (26 loc) · 718 Bytes
/
1 div.html
File metadata and controls
35 lines (26 loc) · 718 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
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DIV</title>
</head>
<body>
<h1>What is div? & the usage </h1>
<h3>div is a block element.</h3>
<h3>It is used to since separate text and row modified.</h3>
<h3>Another one usage style concept.</h3>
<div>
<h1 style="color: red;">Hai Everybody</h1>
</div>
<div>
<h3>Welcome To</h3>
</div>
<div>
<h5 style="background-color: blue;">CSS World</h5>
</div>
<div>
<h1 style="color: dodgerblue; background-image: ;"> Note this point : div tag = inline CSS </h1>
</div>
</body>
</html>