-
Notifications
You must be signed in to change notification settings - Fork 0
/
tut7.html
54 lines (49 loc) · 1.35 KB
/
tut7.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
<!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>Tables and Lists</title>
</head>
<body>
<ul type="circle">
<li>Goldi kills 5 pigs in 3 days</li>
<li>Neha kills 10 pigs in 3 days</li>
<li>Rakesh kills 15 pigs in 3 days</li>
</ul>
<ol type="i">
<li>Any body who want to contact goldi 9721542611</li>
<li>Any body who want to contact neha 8318227646</li>
<li>Any body who want to contact rakesh 7408539991</li>
</ol>
<!-- tables -->
<h3>HTML TABLE</h3>
<table>
<thead>
<tr>
<th>NAME</th>
<th>EMPLOYE ID</th>
<th>EMPLOYE ROLE</th>
</tr>
</thead>
<tbody>
<tr>
<td>rakesh pandey</td>
<td>2569</td>
<td>killer</td>
</tr>
<tr>
<td>goldi dubey</td>
<td>2589</td>
<td>killer pro</td>
</tr>
<tr>
<td>neha pandey</td>
<td>2589</td>
<td>killer pro max</td>
</tr>
</tbody>
</table>
</body>
</html>