-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
78 lines (66 loc) · 1.97 KB
/
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
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>table and lists</Table>
</title>
</head>
<body>
<ul type="circle">
<li>this is my first item of my list unordered</li>
<li>this is my second item of my list unordered</li>
<ul>
<li>another one</li>
<li>another two</li>
<li>another three</li>
</ul>
<li>this is my third item of my list unordered</li>
</ul>
<ol type="a">
<li>this is my first item of my list ordered</li>
<li>this is my second item of my list ordered</li>
<li>this is my third item of my list ordered</li>
<li>this is my fourth item</li>
</ol>
<!--Table-->
<h3>HTML table</h3>
<table style="border: 1px solid l black;">
<thead>
<tr>
<th>name</th>
<th>employee id</th>
<th>employee role</th>
</tr>
</thead>
<tbody>
<tr>
<td> Vijay </td>
<td> EN21154771 </td>
<td> programmer </td>
</tr>
<tr>
<td> Ram </td>
<td> EN21145771 </td>
<td> Developer </td>
</tr>
<tr>
<td> Sara </td>
<td> EN21154772 </td>
<td> programmer </td>
</tr>
<tr>
<td> vijay shete </td>
<td> EN21154778</td>
<td> cyber security</td>
</tr>
<tr>
<td> Athrva donkar</td>
<td> EN2115477187</td>
<td> program</td>
</tr>
</tbody>
</table>
<img src="C:\Users\dyp\Desktop\web.jpg">
</body>
</html>