-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_table.html
77 lines (77 loc) · 2.04 KB
/
list_table.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List and Tables</title>
</head>
<body>
<h2>LIST</h2>
<ul>
<li>This is first unordered element.</li>
<li>This is second unordered element.</li>
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
</ul>
<ol type="1">
<li>This is first ordered element.</li>
<li>This is second ordered element.</li>
<ol type="a">
<li>one</li>
<li>two</li>
<li>three</li>
</ol>
</ol>
<ol type="A">
<li>This is first ordered element.</li>
<li>This is second ordered element.</li>
<li>This is third ordered element.</li>
</ol>
<ol type="a">
<li>This is first ordered element.</li>
<li>This is second ordered element.</li>
<li>This is third ordered element.</li>
</ol>
<ol type="I">
<li>This is first ordered element.</li>
<li>This is second ordered element.</li>
<li>This is third ordered element.</li>
</ol>
<ol type="i">
<li>This is first ordered element.</li>
<li>This is second ordered element.</li>
<li>This is third ordered element.</li>
</ol>
<ol type=""></ol>
<h2>Table</h2>
<table>
<thead>
<tr>
<th>NAME</th>
<th>ROLL NO</th>
<th>SAP</th>
</tr>
</thead>
<tbody>
<tr>
<td>Divyansh</td>
<td>1</td>
<td>100001</td>
</tr>
<tr>
<td>Kartik</td>
<td>2</td>
<td>100002</td>
</tr>
<tr>
<td>Amit</td>
<td>3</td>
<td>100003</td>
</tr>
</tbody>
</table>
</body>
</html>