-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
43 lines (39 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Weather Api</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Abel" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="weather-box">
<div id="AlertMessage" class="hidden">It seems like Geolocation, which is required for this page, is not enabled in your browser. Or you have blocked the geolocalication on this page.</div>
<div class="row">
<input type="text" class="location">
<button class="btn">Search</button>
</div>
<div class="row sp_arrow">
<h2 class="city weather-location"></h2>
<h6 class="country weather-location"></h6>
</div>
<div class="row">
<h1 class="temp"></h1>
<span class="temp-type">°C</span>
</div>
<div class="row">
<h2 class="weather-description"></h2>
<img src="" class="weatherType" id="icon1" width="75" height="75"></img>
</div>
<p class="made-by">Made by Deepak dubey with FFC WEATHER API.</p>
<p class="made-by">Currently modified by <a href="https://github.com/Deepak-du" rel="noopener">Deepak Dubey</a>
</p>
</div>
</div>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>