-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLecture 08.html
More file actions
21 lines (21 loc) · 786 Bytes
/
Lecture 08.html
File metadata and controls
21 lines (21 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!-- In this Lecture we will discuse about inline and Block Elements -->
<!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>Inline and Block Elements</title>
</head>
<body>
<!-- First we Study Block Elements -->
<!-- When we write a paragraph -->
<p>This is Simple Paragraph </p>
<p>You can see this paragraph</p>
<!-- You can see these two lines not in same line -->
<!-- When you inline these paragraph lines you use block element span -->
<!-- span is a Block Element -->
<span>This is Simple Paragraph</span>
<span>You can see this paragraph</span>
</body>
</html>