-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml_tag_format.html
136 lines (111 loc) · 2.65 KB
/
html_tag_format.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
font-family: 'Courier New', Courier, monospace;
font-size: large;
text-align: center;
background-color: #f0f0f0;
}
.container {
margin: 20px 300px;
padding: 10px;
border: 1px solid;
border-radius: 10px;
text-transform: uppercase;
background-color: #fff;
}
code {
padding: 2px 4px;
border-radius: 4px;
background-color: #f4f4f4;
}
kbd {
padding: 2px 4px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #eee;
}
samp {
padding: 2px 4px;
border-radius: 4px;
background-color: #f4f4f4;
}
</style>
</head>
<body>
<h1>HTML Tag : Format</h1>
<div class="container">
<p>This is a <b>bold</b> text example.</p>
<hr />
<p>This is a <strong>strongly emphasized</strong> text example.</p>
<hr />
<p>This is an <i>italicized</i> text example.</p>
<hr />
<p>This is an <em>emphasized</em> text example.</p>
<hr />
<p>This text has been <ins>inserted</ins> into the document.</p>
<hr />
<p>This text has been <del>deleted</del> from the document.</p>
<hr />
<p>This is a <small>smaller text</small> example.</p>
<hr />
<p>Chemical formula for water: H<sub>2</sub>O</p>
<hr />
<p>Einstein's famous equation: E = mc<sup>2</sup></p>
<hr />
<p>This is an example of inline <code>code</code> element.</p>
<hr />
<p>
To save your work, press <kbd>Ctrl</kbd> + <kbd>S</kbd> on your
keyboard.
</p>
<hr />
<p>
Mathematical equation: <var>x</var> + <var>y</var> =
<var>z</var>
</p>
<hr />
<p>
Sample output from a computer program:
<samp>Hello, World!</samp>
</p>
<hr />
<p>
A famous quote by Einstein:
<q>Imagination is more important than knowledge.</q>
</p>
<hr />
<blockquote>
The only limit to our realization of tomorrow is our doubts of
today.
</blockquote>
<hr />
<p>
The term <abbr title="HyperText Markup Language">HTML</abbr> is
the standard markup language for creating web pages.
</p>
<hr />
<p>
<mark>Remember:</mark> All the best coding practices are based
on solid knowledge.
</p>
<hr />
<p>
This book was cited from <cite>The Pragmatic Programmer</cite>.
</p>
<hr />
<p>In Arabic, "hello" is written as <bdo dir="rtl">مرحبا</bdo>.</p>
<hr />
<address>
Founded by paul<br />
Visit us @ legend.com<br />
Disneyland, USA
</address>
</div>
</body>
</html>