-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.html
45 lines (43 loc) · 1.31 KB
/
weather.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
<!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" />
<!-- font awesome -->
<script
src="https://kit.fontawesome.com/6ce3b3431a.js"
crossorigin="anonymous"
></script>
<!-- css -->
<link rel="stylesheet" type="text/css" href="main.css" />
<title>Weather App</title>
</head>
<body>
<div class="main-container">
<header>
<h1>Weather App</h1>
</header>
<div class="user">
<label for="city">City:</label>
<input type="text" id="city" name="city" />
<button id="submit" type="button">SUBMIT</button>
<button id="search" type="button">GET CURRENT LOCATION</button>
</div>
<div class="info_container">
<h2 id="date-tag">Today</h2>
<p id="message"></p>
<div class="weatherinfo-wrapper">
<span id="city-name"></span>
<span id="temperature"></span>
<img id="icon" src="" />
<span id="speed"> </span>
<span id="cloudy"></span>
<span id="sunrise"></span>
<span id="sunset"></span>
</div>
</div>
</div>
<script src="weather.js" type="module"></script>
</body>
</html>