-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut4.html
58 lines (56 loc) · 1.47 KB
/
tut4.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
<!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 and tables</title>
</head>
<body>
<ul type="circle">
<!-- take types from internet-->
<!-- press alt for multiple cursor-->
<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 of my unordered list</li>
<li>this is fourth item of my unordered list</li>
<ul>
<li>another one</li>
<li>another two</li>
</ul>
</ul>
<ol type="A">
<li>this is first item of my ordered list</li>
<li>this is second item of my ordered list</li>
<li>this is third item of my ordered list</li>
</ol>
<!--Tables -->
<h1>html table</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Employee id</th>
<th>Employee salary</th>
</tr>
</thead>
<tbody>
<tr>
<td>sayali</td>
<td>7576</td>
<td>8785558</td>
</tr>
<tr>
<td>pooja</td>
<td>76868</td>
<td>7567565757</td>
</tr>
<tr>
<td>shivani</td>
<td>6767</td>
<td>68686897</td>
</tr>
</tbody>
</table>
</body>
</html>