-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEX_tabela_climatica.html
More file actions
95 lines (93 loc) · 2.34 KB
/
EX_tabela_climatica.html
File metadata and controls
95 lines (93 loc) · 2.34 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
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="CSS/weather-icons.css">
<link rel="stylesheet" href="CSS/weather-icons.min.css">
<link rel="stylesheet" href="CSS/weather-icons-wind.css">
<link rel="stylesheet" href="CSS/weather-icons-wind.min.css">
<link rel="stylesheet" href="CSS/font/weathericons-regular-webfont.svg">
<style>
body {
font-size: 12px;
font-family:'Times New Roman', Times, serif
}
table{
background-color: rgb(240,248,255);
width: 20%;
text-align: center;
}
thead{
padding: 5px;
border: solid black 1px;
}
td{
padding: 5px;
border: solid black 1px;
}
.corth{
background-color: rgb(168, 218, 213);
}
tr:hover{
background-color: rgb(168, 218, 213);
}
</style>
</head>
<body>
<table>
<thead class="corth">
<tr>
<td>Dia</td>
<td>Tempo</td>
<td>minima</td>
<td>maxima</td>
</tr>
</thead>
<tr>
<td>Domingo</td>
<td ><i class="wi-day-cloudy:before \f002"></td>
<td>27°</td>
<td>32°</td>
</tr>
<tr>
<td>Segunda</td>
<td>Tempo</td>
<td>27°</td>
<td>32°</td>
</tr>
<tr>
<td>Terça</td>
<td>Tempo</td>
<td>27°</td>
<td>32°</td>
</tr>
<tr>
<td>Quarta</td>
<td>Tempo</td>
<td>27°</td>
<td>32°</td>
</tr>
<tr>
<td>Quinta</td>
<td>Tempo</td>
<td>27°</td>
<td>32°</td>
</tr>
<tr>
<td>Sexta</td>
<td>Tempo</td>
<td>27°</td>
<td>32°</td>
</tr>
<tr>
<td>Sabado</td>
<td>Tempo</td>
<td>27°</td>
<td>32°</td>
</tr>
</table>
</body>
</html>