-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path04_typography.html
35 lines (28 loc) · 1.08 KB
/
04_typography.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
34
35
<!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>Headings, Paragraphs, Typography</title>
</head>
<body>
<a href="05_links_images.html">Links and Images</a>
<!-- Headings -->
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<!-- Paragraph -->
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <strong> Accusamus, sed, dolore deserunt eveniet </strong> aspernatur facere <b> nihil commodi </b> nemo nobis accusantium <em>inventore soluta </em>ipsum laudantium odit! <i>Nam labore </i>tempora, vero quae <del> voluptatibus eum? </del>Expedita
<!-- Line Break -->
<br>
<br>
nisi necessitatibus suscipit praesentium reiciendis a est. Quam aliquam id dolorum dicta quos dolore
<!-- Horizontal Rule -->
<hr>
quidem totam architecto similique. Quas placeat ex error? </p>
</body>
</html>