-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtable-striped.html
More file actions
51 lines (42 loc) · 798 Bytes
/
Copy pathtable-striped.html
File metadata and controls
51 lines (42 loc) · 798 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
table {
border-collapse: collapse;
width: 30%;
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color:gainsboro;
}
</style>
</head>
<body>
<h2>Table Striped</h2>
<table>
<tr>
<th>Item</th>
<th>Price</th>
</tr>
<tr>
<td>Tea</td>
<td>10</td>
</tr>
<tr>
<td>Coffee</td>
<td>20</td>
</tr>
<tr>
<td>Hot Chocolate</td>
<td>30</td>
</tr>
</table>
</body>
</html>