-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable3.html
More file actions
86 lines (84 loc) · 1.77 KB
/
table3.html
File metadata and controls
86 lines (84 loc) · 1.77 KB
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
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>html tables</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Urbanist:wght@300;400;600;700;800;900&display=swap");
html {
font-family: "jost", sans-serif;
background-color: #efefef;
}
h1 {
font-weight: bold;
}
table {
text-align: center;
border: 1px solid #000;
border-collapse: collapse;
}
tr,
td,
th {
border: 3px solid #000;
padding: 10px;
}
</style>
</head>
<body>
<h1>html table Tag</h1>
<table>
<thead>
<tr>
<th colspan="7">timetable</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="6">hours</td>
<td>Mon</td>
<td>Tue</td>
<td>Wed</td>
<td>thr</td>
<td>Fri</td>
<td>Sat</td>
</tr>
<tr>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
</tr>
<tr>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
</tr>
<tr>
<td colspan="6">Lunch</td>
</tr>
<tr>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
<td rowspan="2">Games</td>
</tr>
<tr>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
<td>math</td>
</tr>
</tbody>
</table>
</body>
</html>