-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut5.html
28 lines (28 loc) · 983 Bytes
/
tut5.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
<!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>Heading Paragraph and Emmet</title>
</head>
<body>
<h1>Asu</h1>
<h2>Asu</h2>
<h3>Asu</h3>
<h4>Asu</h4>
<h5>Asu</h5>
<h6>Asu</h6>
<p>this is Asu</p>
<!-- Lorem 23 dummy tests for 23 words -->
<p>Lorem ipsum dolor Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem nulla, dolore autem aspernatur deserunt distinctio ut excepturi? Minus iusto quaerat <strong>This is strong</strong> aspernatur magnam reprehenderit voluptate <b>bold is here</b>nesciunt nulla <em>This is emphasised</em>numquam impedit illo ipsam<i>italic</i> tempore, at alias?</sit></p>
<p>first<br> <br> <br> <br> <br>newline</p>
<hr>
<p>second</p>
<p>third</p>
<p>four</p>
<p>five</p>
<p>This is a paragraph</p>
<!-- ctrl + enter to jump a new line -->
</body>
</html>