-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsivo.css">
<title>FairWeather</title>
</head>
<body>
<h2>welcome to</h2>
<h1>FairWeather</h1>
<div class="header_container">
<div id="en" onclick="langEn()"></div>
<div id="pt-br" onclick="langPt()"></div>
<!-- -->
<br>
<!-- -->
<input id="city" type="text" placeholder="City..">
<input id="state" type="text" placeholder="State..">
<!-- -->
<br>
<!-- -->
<button id="clear" onclick="Clear()">Clear</button>
<button id="send" onclick="getData()">Send</button>
</div>
<div class="data_container">
<h3 id="cityName">Name</h3>
<h4 id="tempNow">TempNow</h4>
<div class="middle_sec">
<h4 id="pressure">Pressure</h4>
<h4 id="wind">Wind</h4>
</div>
<h4 id="umidity">Umidity</h4>
<nav>
<div id="sunny"></div>
<div id="cloudy"></div>
<div id="rainy"></div>
<div id="snowy"></div>
</nav>
</div>
<script src="js/script.js"></script>
</body>
</html>