-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypography_04.html
More file actions
30 lines (29 loc) · 1.06 KB
/
typography_04.html
File metadata and controls
30 lines (29 loc) · 1.06 KB
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
<!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>Typography</title>
</head>
<body>
<!-- Headings -->
<h1>Welcome</h1>
<h2>Welcome</h2>
<h3>Welcome</h3>
<h4>Welcome</h4>
<h5>Welcome</h5>
<h6>Welcome</h6>
<!-- Horizontal Line -->
<hr>
<!-- Paragraphs -->
<p>This is the first paragraph</p>
<!-- Dummy text: lorem102020 -->
<!-- lorem10 -->
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Amet, qui.</p>
<!-- lorem20 -->
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Voluptas ab eius accusamus quae tempore magni, saepe excepturi architecto vitae numquam?</p>
<!-- lorem30 -->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam cumque nulla voluptate doloribus excepturi distinctio magni ullam aspernatur! Illum aut sapiente laudantium dolore expedita perspiciatis suscipit soluta optio odio hic.</p>
</body>
</html>