-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.html
76 lines (69 loc) · 1.87 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table Styling Example</title>
<style>
/* CSS for styling the table */
table {
width: 100%;
border-collapse: collapse;
/* Remove spacing between table cells */
margin-bottom: 20px;
/* Add spacing at the bottom of the table */
}
/* Style for table headers (th) */
th {
background-color: #007bff;
/* Blue background color */
color: #fff;
/* White text color */
font-weight: bold;
padding: 8px;
text-align: left;
}
/* Style for table data cells (td) */
td {
border: 1px solid #ccc;
/* Add a border to cells */
padding: 8px;
text-align: left;
}
/* Add zebra striping for better readability */
tr:nth-child(even) {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>Table Styling Example</h1>
<!-- Create a table -->
<table>
<thead>
<tr>
<th>City</th>
<th>State</th>
<th>Population</th>
</tr>
</thead>
<tbody>
<tr>
<td>Mumbai</td>
<td>Maharashtra</td>
<td>12,478,447</td>
</tr>
<tr>
<td>Delhi</td>
<td>Delhi</td>
<td>11,034,555</td>
</tr>
<tr>
<td>Bengaluru</td>
<td>Karnataka</td>
<td>8,443,675</td>
</tr>
</tbody>
</table>
</body>
</html>