-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4_list_tables.html
99 lines (77 loc) · 1.7 KB
/
4_list_tables.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
<!DOCTYPE html>
<html lang="en">
<!-- head starts from here -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List and Table</title>
</head>
<!-- bpdy part starts from here -->
<body>
<!-- html unordered list -->
<ul type = "circle">
<h3>This is first element of unordered list:fruit</h3>
<li>Apple</li>
<li>Mango</li>
<li>Lemon</li>
<ul type = "square">
<H3>This is second element of unordered list:chocolate</H3>
<li>Diary Milk</li>
<ul type = "disc">
<li>Diary Milk silk</li>
<li>Diary Milk Fruit & Nut</li>
</ul>
<li>Kitkat</li>
</ul>
</ul>
<!-- html ordered List -->
<ol type = "A">
<h3>This is first element of ordered list:fruit</h3>
<li>Apple</li>
<li>Mango</li>
<li>Lemon</li>
<ol type = "i">
<H3>This is second element of ordered list:chocolate</H3>
<li>Diary Milk</li>
<ol type = "a">
<li>Diary Milk silk</li>
<li>Diary Milk Fruit & Nut</li>
</ol>
<li>Kitkat</li>
</ol>
</ol>
<!-- html tables -->
<h2>HTML TABLE</h2>
<table>
<!-- Table head starts from here -->
<thead>
<tr>
<th>Name</th>
<th>Class</th>
<th>Sec</th>
</tr>
</thead>
<!-- Table bosy starts from here -->
<tbody>
<tr>
<td>Tapati</td>
<td>12</td>
<td>'C'</td>
</tr>
<tr>
<td>Somnath</td>
<td>10</td>
<td>'B'</td>
</tr>
<tr>
<td>Debanga</td>
<td>3</td>
<td>'A'</td>
</td>
</tr>
</tbody>
</table>
</body>
</html>
<!-- Here we see different types of list i.e ordered list & unordered List -->
<!-- And how to create table in html -->