-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (50 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!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">
<link href="https://fonts.googleapis.com/css2?family=Merriweather+Sans&display=swap" rel="stylesheet">
<link rel="icon" href="img/weathericon.png">
<link rel="stylesheet" href="style.css">
<title>Weather Application</title>
</head>
<body>
<header>
<nav>
<h1 class="titleText">WeatherWizz</h1>
</nav>
</header>
<div class="container">
<div class="card">
<div class="cardText">
<h1>Choose a City</h1>
</div>
<div class="inputText">
<input id="textEntry" type="text" placeholder="Paris, Tokyo, London, etc." onclick="removeText()">
<button class="btnSearch"><img src="img/icons8-search-24.png"/></button>
</div>
<div class="weather">
<h2 class="city">San Francisco</h2>
<div class="temp">74°F</div>
<div class="minMaxFlex">
<div class="max-temp">69°</div>
<div class="vertical">|</div>
<div class="min-temp">51°</div>
</div>
<div class="feels_like">Feels Like: 65.5°F</div>
<div class="flex">
<img src="http://openweathermap.org/img/wn/01d.png" alt="" class="icon">
<div class="description">Clear Sky</div>
</div>
<div class="humidity">Humidity: 32%</div>
<div class="wind">Wind Speed: 4mph</div>
</div>
</div>
<footer>
<h1>Copyright © 2021 Jose Tovar</h1>
</footer>
</div>
<script src="main.js"></script>
</body>
</html>