-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathHTML-5-Text-1.htm
More file actions
75 lines (60 loc) · 1.18 KB
/
HTML-5-Text-1.htm
File metadata and controls
75 lines (60 loc) · 1.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>HTML 5 Text Example 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
The following are the OpenClass demos for HTML 5 Text :
</br>
</br>
<b>Bold</b>
</br>
<i>Italic</i>
</br>
<u>Underline</u>
</br>
Normal Text<sup>Superscript Text</sup>
</br>
Normal Text<sub>Subscript Text</sub>
</br>
<s>Strikethrough</s>
</br>
<ul>
Unordered List (Bullets)
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>
<ol>
Ordered List (Numbering)
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ol>
<table>
Simple Table
<tr>
<td>Table Cell A1</tc>
<td>Table Cell B1</tc>
<td>Table Cell C1</tc>
</tr>
<tr>
<td>Table Cell A2</tc>
<td>Table Cell B2</tc>
<td>Table Cell C2</tc>
</tr>
<tr>
<td>Table Cell A3</tc>
<td>Table Cell B3</tc>
<td>Table Cell C3</tc>
</tr>
</table>
<h1>Heading Type 1</h1>
<h2>Heading Type 2</h2>
<h3>Heading Type 3</h3>
<h4>Heading Type 4</h4>
<h5>Heading Type 5</h5>
<h6>Heading Type 6</h6>
</body>
</html>