-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbodyTags.html
33 lines (29 loc) · 1016 Bytes
/
bodyTags.html
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
<!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>Head paragraphs and emmet</title>
</head>
<body>
<h1>Sidharth Juyal</h1>
<h2>Sidharth Juyal</h2>
<h3>Sidharth Juyal</h3>
<h4>Sidharth Juyal</h4>
<h5>Sidharth Juyal</h5>
<h6>Sidharth Juyal</h6>
<p>Lorem ipsum dolor sit.</p>
<!-- lorem4 + enter for four words -->
<p>Lorem ipsum dolor sit amet consectetur.</p>
<p>Lorem ipsum <em>This is emphasis </em>dolor sit amet consectetur.</p>
<p>Lorem ipsum <strong>This is strong</strong> dolor sit amet consectetur.</p>
<p>Lorem ipsum <i>hello </i><b>jello </b>dolor sit amet consectetur.</p>
<!-- p*n for for n paragraphs -->
<br>
<!-- for line break -->
<hr>
<!-- horizontal rule line gets displayed -->
<p>first line <br> second line</p>
</body>
</html>