-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
28 lines (26 loc) · 848 Bytes
/
example.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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lesson 3 - HTML Text</title>
</head>
<body>
<h1>Lesson 3 - HTML Text</h1>
<p>This is a paragraph.</p>
<hr><!-- Horizontal Rule: is a horizontal break, used to separate content -->
<p>
<b> Bold text </b> </div>
</br><!-- Break: line break within a block of text-->
<strong> Important text </strong> </br>
<i> Italic text </i> </br>
<em> Emphasised text </em> </br>
<mark> Marked text </mark> </br>
<small> Smaller text </small> </br>
<del> Deleted text </del> </br>
<ins> Inserted text </ins> </br>
<sub> Subscript text </sub> </br>
<sup> Superscript text </sup> </br>
</p>
</body>
</html>