-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 1.32 KB
/
index.html
File metadata and controls
41 lines (37 loc) · 1.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<title>The Weather HUB</title>
</head>
<body>
<div class="head-container">
<div class="nav">
<div class="right">
<dotlottie-player src="https://lottie.host/c42cf5dc-e9a9-4437-b848-d24c8a3f2748/fA5Fj373JL.lottie" background="transparent" speed="1" style="width: 50px; height: 50px" direction="1" playMode="normal" loop autoplay></dotlottie-player>
<span class="name">The Weather Hub</span>
</div>
<div class="center">
<span class="location">PHAGWARA</span>
</div>
</div>
</div>
<div class="main">
<div class="left">
<h2>ENTER YOUR LOCATION : </h2>
<input type="text" id="location-input">
<button onclick="getloc()">SUBMIT</button>
</div>
<div class="main-right">
<h1 id="location"></h1>
<img src="" alt="" id="weather-icon">
<h1 id="condition"></h1>
<h1 id="temp"></h1>
</div>
</div>
<script src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs" type="module"></script>
<script src="script.js"></script>
</body>
</html>