-
Notifications
You must be signed in to change notification settings - Fork 0
/
fouth.html
57 lines (51 loc) · 1.23 KB
/
fouth.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lists and table</title>
</head>
<body>
<ul type="square">
<li>This is the first unorderd lists</li>
<li>This is the second unorderd lists</li>
<ul>
<li>this is the another one</li>
</ul>
<li>This is the third unorderd lists</li>
</ul>
<ol type="A">
<li>This is the first ordered list</li>
<ol type="i">
<li>
hello everyone
</li>
</ol>
<li>This is the first ordered list</li>
<li>This is the first ordered list</li>
</ol>
<!-- Table -->
<h3>Html table</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>number</th>
<th>employee id</th>
</tr>
</thead>
<tbody>
<tr>
<td>rishi</td>
<td>5256527</td>
<td>23</td>
</tr>
<tr>
<td>raj</td>
<td>5256527</td>
<td>25</td>
</tr>
</tbody>
</table>
</body>
</html>