Skip to content

Commit 57e20a8

Browse files
committed
Formatting Tags
1 parent 854a8fe commit 57e20a8

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Formatting Tags</title>
8+
</head>
9+
<body>
10+
11+
<h1>Formatting Tags</h1>
12+
13+
<p><b>This is Bold</b></p>
14+
<p><i>This is Italic</i></p>
15+
<p><u>This is Underline</u></p>
16+
<p><s>This is Strikethrough</s></p>
17+
<p><mark>This is Highlighted</mark></p>
18+
<p><small>This is Small Text</small></p>
19+
<p><sub>This is Subscript</sub></p>
20+
<p><sup>This is Superscript</sup></p>
21+
<p><strong>This is Strong</strong></p>
22+
<p><em>This is Emphasized</em></p>
23+
<p><del>This is Deleted Text</del></p>
24+
<p><ins>This is Inserted Text</ins></p>
25+
<p><code>This is Code</code></p>
26+
<p><pre>This is Preformatted Text</pre></p>
27+
<p><q>This is a Quotation</q></p>
28+
<p><blockquote>This is a Blockquote</blockquote></p>
29+
<p><abbr title="Hypertext Markup Language">HTML</abbr> is a markup language.</p>
30+
<p><time datetime="2023-10-01">October 1, 2023</time> is a date.</p>
31+
<p><address>This is an Address</address></p>
32+
33+
34+
35+
36+
</body>
37+
</html>

0 commit comments

Comments
 (0)