-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Table</title>
<link rel="stylesheet" href='./mystyle.css'>
</head>
<body>
<header class='header'>Weather Forecast</header>
<div class='wrap'>
<table cellspacing='0' class='table'>
<tr class='table-title'>
<th class='time'>Time</th>
<th class='temp'>Temperature</th>
<th class='hum'>Humidity</th>
</tr>
<tr>
<td class='grey'>7:00 PM</td>
<td class='white'>23°</td>
<td class='white'>8%</td>
</tr>
<tr>
<td class='grey'>8:00 PM</td>
<td class='white'>24°</td>
<td class='white'>9%</td>
</tr>
<tr>
<td class='grey'>9:00 PM</td>
<td class='white'>21°</td>
<td class='white'>7%</td>
</tr>
</table>
</div>
</body>
</html>