-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTestFormat.html
More file actions
52 lines (52 loc) · 1.5 KB
/
TestFormat.html
File metadata and controls
52 lines (52 loc) · 1.5 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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>text format</title>
</head>
<body>
<p>to write the bold text we use <b> tag</p>
<b>BOld TExt</b>
<br /><br />
<hr />
<p>To define the Important text we use <strong> tag</p>
<strong>This is the strong text</strong>
<hr />
<br />
<p>To write the italic text we use <i> tag</p>
<i>This is the italic text</i>
<hr />
<br />
<p>To emphasized the text we use <em> tag</p>
<em>This is the italic text</em>
<hr />
<br />
<p>To marked the text (backgrond color) we use <marked> tag</p>
<mark>This is the marked text</mark>
<hr />
<br />
<p>To make the text smaller we use <small> tag</p>
<small>This is the small text</small>
<hr />
<br />
<p>To struck through the text we use <del> tag</p>
<del>This is the del text</del>
<hr />
<br />
<p>To write the subscript text we use <sub> tag</p>
<h1>H<sub>2</sub>SO<sub>4</sub></h1>
<hr />
<br />
<p>To write the superscript text we use <sup> tag</p>
<h3>a<sup>2</sup>+b<sup>2</sup></h3>
<hr />
<p>To write right to left</p>
<bdo dir="rtl">THAPA TECHNICAL</bdo>
<br />
<hr />
<p>To write left to right</p>
<bdo dir="ltr">THAPA TECHNICAL</bdo>
</body>
</html>