-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 726 Bytes
/
index.html
File metadata and controls
46 lines (41 loc) · 726 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
table {
width: 500px;
border-collapse: collapse;
}
td {
width: 25%;
height: 50px;
border: 1px solid #000;
text-align: center;
font-size: 0;
}
</style>
</head>
<body>
<!-- 四行四列的表格 -->
<table border="1">
<tr>
<td colspan="4"></td>
</tr>
<tr>
<td colspan="2" rowspan="2"></td>
<td></td>
<td rowspan="3"></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</body>
</html>