-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext_formating.html
More file actions
31 lines (31 loc) · 1.21 KB
/
text_formating.html
File metadata and controls
31 lines (31 loc) · 1.21 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
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Formatting</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p><strong>This text is bold.</strong></p>
<p><em>This text is italic.</em></p>
<p><u>This text is underlined.</u></p>
<p><mark>This text is highlighted.</mark></p>
<p><small>This text is smaller.</small></p>
<p><del>This text is deleted.</del></p>
<p><ins>This text is inserted.</ins></p>
<p><sub>This text is subscript.</sub></p>
<p><sup>This text is superscript.</sup></p>
<p><code>This text is inline code.</code></p>
<p><kbd>This text is user input.</kbd></p>
<p><samp>This text is sample output.</samp></p>
<p><var>This text is a variable.</var></p>
<p><abbr title="Hypertext Markup Language">HTML</abbr> is an abbreviation.</p>
<p><cite>This text is a citation.</cite></p>
<p><q>This text is a short inline quotation.</q></p>
<p><blockquote>This text is a block quotation.</blockquote></p>
<p><bdo dir="rtl">This text is bidirectional override.</bdo></p>
<p><b>>This is bold text.</b></p>
</body>
</html>