-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables and lists.html
57 lines (46 loc) · 1.2 KB
/
tables and lists.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> table And Lists </title>
</head>
<body>
<ul>
<li> this is my first unordered lise </li>
<li> this is my second unordered lise </li>
<li> this is my thred unordered lise </li>
</ul>>
<ol>
<li> This is my first orderd list </li>
<li> This is my second orderd list </li>
<li> This is my therd orderd list </li>
</ol>
<table>
<thead>
<tr>
<th> name </th>
<th> enrolment </th>
<th> phone no </th>
</tr>
</thead>
<tbody>
<tr>
<td> Ashvin </td>
<td> 180470116061 </td>
<td> 1234556678 </td>
</tr>
<tr>
<td> ravi </td>
<td> 180470116062 </td>
<td> 1234556678 </td>
<tr>
<td> prit </td>
<td> 180470116059 </td>
<td> 1234556678 </td>
</tr>
</tr>
</tbody>
</table>
</body>
</html>