-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebdevlist.html
More file actions
52 lines (47 loc) · 1.07 KB
/
webdevlist.html
File metadata and controls
52 lines (47 loc) · 1.07 KB
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
<!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>Document</title>
</head>
<body>
<ul type="square">
<li>This is first item of my unordered list </li>
<li>This is second item of my unordered list</li>
<li>This is third item od my unordered list</li>
<li>
<ul><li>This is list in a list</li></ul></li>
<ul><li>This is list in a list but it is not listed in it:</li></ul>
</ul>
<ol type="A">
<li>This is first element of my ordered list</li>
<li>This is second element of my ordered list</li>
<li>This is the third element of my ordered list</li>
</ol>
<!-- tables -->
<h3>HTML TABLES</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>Employee Id</th>
<th>Employee Role</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sejal</td>
<td>334345</td>
<td>Java Expert</td>
<tr>
<td>Pranita</td>
<td>657</td>
<td>C++ Expert</td>
</tr>
</tr>
</tbody>
</table>
</body>
</html>