-
Notifications
You must be signed in to change notification settings - Fork 11
/
table.html
65 lines (55 loc) · 925 Bytes
/
table.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
<!DOCTYPE html>
<html>
<head>
<style>
#customers {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
#customers td, #customers th {
border: 1px solid #ddd;
padding: 8px;
}
#customers tr:nth-child(even){background-color: #f2f2f2;}
#customers tr:hover {background-color: #ddd;}
#customers th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #455cf3;
color: white;
}
</style>
</head>
<body>
<h1> Table</h1>
<table id="customers">
<tr>
<th>Name</th>
<th>Age</th>
<th>Country</th>
</tr>
<tr>
<td>Jhon Mathew</td>
<td>35</td>
<td>Germany</td>
</tr>
<tr>
<td>Albert nick</td>
<td>60</td>
<td>Sweden</td>
</tr>
<tr>
<td>Meghana shift</td>
<td>20</td>
<td>Mexico</td>
</tr>
<tr>
<td>stew nob</td>
<td>10</td>
<td>Austria</td>
</tr>
</table>
</body>
</html>