-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsixth.html
More file actions
26 lines (22 loc) · 736 Bytes
/
sixth.html
File metadata and controls
26 lines (22 loc) · 736 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inline and Block Elements</title>
</head>
<body>
<!-- for block element -->
<p style="border: 2px solid red;">this is a para</p>
<p style="border: 2px solid blue;">this is also para</p>
<!-- for inline element -->
<span style="border: 2px solid green;;">this is a span</span>
<span style="border: 2px solid yellow;">this is also span</span>
<ul type="square">
<li style="border: 2px solid purple;">
this is a list
</li>
</ul>
<em style="border: 2px solid gray;">this is a emphasized</em>
</body>
</html>