-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext-format.html
More file actions
29 lines (27 loc) · 905 Bytes
/
Copy pathtext-format.html
File metadata and controls
29 lines (27 loc) · 905 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Formating In HTML</title>
</head>
<body>
<h1>Text Formatting Example</h1>
<p><b>Bold Text</b></p>
<p><i>Italic Text</i></p>
<p><u>Underlined Text</u></p>
<p><strike>Strikethrough Text</strike></p>
<p><strong>Important Text</strong></p>
<p><em>Emphasized Text</em></p>
<p>H<sub>2</sub>O (Subscript) and X<sup>2</sup> (Superscript)</p>
<blockquote>
This is a blockquote example. Blockquotes are used to indicate the quotation of a large section of text from another source.
</blockquote>
<pre><code>
// This is a code snippet example
function helloWorld() {
console.log("Hello, world!");
}
</code></pre>
</body>
</html>