-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#c6acee">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="apple-touch-icon" href="img/logo192.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<link rel="manifest" href="./manifest.json">
<title>Weather App</title>
</head>
<body>
<div>
<main>
<div class="search-box" id="search-container">
<input type="text" id="search-input" class="search-bar" autocomplete="on" placeholder="Enter a city name or a zip code"/>
</div>
<div id="weather-container">
<div class="location-box">
<div class="location" id="location"></div>
</div>
<div class="weather-box">
<div><img id="icon"></div>
<div class="temp" id="temp"></div>
<div id="weather-desc-header"></div>
<div class="weather"></div>
<div id="wind-speed" class="bottom-details"></div>
<div id="humidity" class="bottom-details"></div>
</div>
</div>
</main>
</div>
<script src="script/index.js"></script>
<noscript>Your browser does not support JavaScript!</noscript>
</body>
</html>