-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06_lists_tables.html
78 lines (71 loc) · 1.72 KB
/
06_lists_tables.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 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>
<style>
table, th, td {
border: 1px dotted rgb(32, 9, 114);
}
</style>
<body>
<!-- Unordered List -->
<h3>Fairest of them all</h3>
<!-- <ul style="list-style: square"> -->
<ul>
<li>nesan</li>
<li>rica</li>
<li>drei</li>
<li>karen</li>
</ul>
<!-- Ordered List -->
<h3>Handsome of them all</h3>
<ol>
<li>Ernest</li>
<li>Richard</li>
<li>Renz</li>
<li>Marcus</li>
</ol>
<!-- Nested List -->
<ul>
<li>Caffe Machiatto</li>
<li>Coffee</li>
<ul>
<li>Coffee Jelly with Mocha Syrup</li>
<li>Brewed Coffee in a venti cup</li>
</ul>
<li>Chocolate Chip Cream</li>
<li>Java Chip</li>
</ul>
<!-- Tables -->
<table style="width: 600px;">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jake</td>
<td>Oloya</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Raymund</td>
<td>Villanueva</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Christian</td>
<td>Halili</td>
<td>[email protected]</td>
</tr>
</tbody>
</table>
</body>
</html>