-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Weather App</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://kit.fontawesome.com/c4060fe2ec.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</head>
<body class="text-center">
<main>
<div class="title"><img src="img/title.png"></div>
<div class="search-box">
<input id="city-input" class="search-txt" type="text" placeholder=" Search city">
<a class="search-btn" href="javascript:searchCity()">
<i class="fas fa-search"></i>
</a>
</div>
<div id="weather-output" class="mt-3">
<h4 id="city-name" class="my-0 font-weight-normal"></h4>
<h1 id="weather-type" class="card-title"></h1>
<ul class="list-unstyled mt-3 mb-4">
<h1> <span id="temp"></span></h1>
<h1><span id="min-temp"></span></h1>
<h1><span id="max-temp"></span></h1>
</ul>
</div>
</main>
</body>
</html>