-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (82 loc) · 1.56 KB
/
index.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
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, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" media="screen" href="./style.css">
<title>Document</title>
</head>
<body>
<table>
<thead>
<tr>
<th>thead 1</th>
<th>thead 2</th>
<th>thead 3</th>
<th>thead 4</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<div>col 1</div>
</td>
<td>
<div>col 2</div>
</td>
<td>
<div>col 3</div>
</td>
<td>
<div>col 4</div>
</td>
</tr>
<tr>
<td>
<div>col 1</div>
</td>
<td>
<div>col 2</div>
</td>
<td>
<div>col 3</div>
</td>
<td>
<div>col 4</div>
</td>
</tr>
<tr>
<td>
<div>col 1</div>
</td>
<td>
<div>col 2</div>
</td>
<td>
<div>col 3</div>
</td>
<td>
<div>col 4</div>
</td>
</tr>
<tr>
<td>
<div>col 1</div>
</td>
<td>
<div>col 2</div>
</td>
<td>
<div>col 3</div>
</td>
<td>
<div>col 4</div>
</td>
</tr>
</tbody>
</table>
<script src="./script.js"></script>
</body>
</html>