-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<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">
<title>WEATHER APP</title>
<link rel="stylesheet" href="style.css">
<link
href="https://fonts.googleapis.com/css?family=Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"
rel="stylesheet" />
</head>
<body>
<div class="app-wrap">
<header>
<input type="text" class="search-box" placeholder="Search for a city️..." autocomplete="off">
</header>
<main>
<section class="location">
<div class="city">Nagpur IN🏙️</div>
<div class="date">📆Sunday 02 October 2022</div>
</section>
<div class="current">
<div class="temp">38<span>℃</span></div>
<div class="weather">Sunny</div>
<div class="hi-low">40℃ / 21℃ </div>
</div>
</main>
<footer>
<p class="copyright">Designed By-VIPLOVE KALE © 2022</p>
</footer>
</div>
<script type="text/javascript" src="app.js"></script>
</body>
</html>