-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformatting.html
73 lines (66 loc) · 1.65 KB
/
formatting.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Formatting Text Example</title>
</head>
<body>
<p>
The following word uses <strong>bold</strong> typeface.
</p>
<p>
The following word uses <em>italic</em> typeface.
</p>
<p>
The following word uses <u>underline</u> typeface.
</p>
<p>
The following word uses a <strike>strikethrough</strike> typeface.
</p>
<p>
The following word uses a <tt>monospaced</tt> typeface.
</p>
<p>
The following word uses a <sup>superscript</sup> typeface.
</p>
<p>
The following word uses a <sub>subscript</sub> typeface
</p>
<p>
I want to drink <del>cola</del> <ins>wine</ins>
</p>
<p>
I want to drink <del>cola</del> <ins>wine</ins>
</p>
<p>
The following word uses a <big>big</big> typeface.
</p>
<p>
The following word uses a <small>small</small> typeface.
</p>
<p>
The following word is a <dfn>special</dfn> term.
</p>
<p>
This chapter covers marking up text in <acronym>XHTML</acronym>.
</p>
<p>
My best friend's name is <abbr title="Abhishek">Abhy</abbr>.
</p>
<p>
Amit is in Spain, <q>I think I am wrong</q>.
</p>
<p>
This HTML tutorial is derived from <cite>W3 Standard for HTML</cite>.
</p>
<p>
Regular text. <code>This is code.</code> Regular text.
</p>
<p>
Regular text. <kbd>This is inside kbd element</kbd> Regular text.
</p>
<p><code>document.write("<var>user-name</var>")</code></p>
<p>Result produced by the program is <samp>Hello World!</samp></p>
<address>388A, Road No 22, Jubilee Hills - Hyderabad</address>
<p>The following word has been <mark>marked</mark> with yellow</p>
</body>
</html>