-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.html
More file actions
61 lines (61 loc) · 1.55 KB
/
info.html
File metadata and controls
61 lines (61 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
table {
border-collapse: collapse;
background-color: whitesmoke;
}
td, th {
text-align: center;
padding: 10px;
height: 10px;
width: 100px;
border: 1px solid black;
}
thead, tfoot {
background-color: lightgray;
}
div {
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div style="display: table;">
<table id="table" style="float: left;">
<thead>
<tr>
<th>종류</th>
<th>오늘</th>
<th>내일</th>
<th>모레</th>
</tr>
</thead>
<tbody>
<tr>
<td>꽃가루농도위험지수(참나무)</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>꽃가루농도위험지수(소나무)</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>꽃가루농도위험지수(잡초류)</td>
<td>0</td>
<td>0</td>
<td>0</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>