-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.html
62 lines (58 loc) · 1.52 KB
/
new.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>lists</title>
</head>
<body>
<ul type="circle">
<li>this is the first item of my unordered list</li>
<ul>
<li> Another type</li>
<li> Another type</li>
<li> Another type</li>
<li> Another type</li>
<li> Another type</li>
</ul>
<li>this is the second item of my unordered list</li>
<li>this is the third item of my unordered list</li>
</ul>
<ol type="I">
<li>this is the first item of my ordered list</li>
<li>this is the second item of my ordered list</li>
<li>this is the third item of my ordered list</li>
</ol>
<h2> HTML TAbles</h2>
<table>
<thead>
<tr>
<th>Name</th>
<th>Employee Id</th>
<th>Employee Role</th>
</tr>
</thead>
<tbody>
<tr>
<td>Harry</td>
<td>222</td>
<td>Youtuber</td>
</tr>
<td>ali</td>
<td>222</td>
<td>Youtuber</td>
<tr>
<td>sana</td>
<td>222</td>
<td>Youtuber</td>
</tr>
<tr>
<td>rohan</td>
<td>222</td>
<td>Youtuber</td>
</tr>
</tbody>
</table>
</body>
</html>