-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (65 loc) · 2.05 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
67
68
69
70
71
72
73
<!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" />
<!-- CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Icon -->
<link href="https://unpkg.com/boxicons@2.1.1/css/boxicons.min.css" rel="stylesheet" />
<title>Weather App</title>
</head>
<body>
<div class="wrapper">
<header>
<i class="bx bx-left-arrow-alt"></i>Weather App | By Harsh Kumar Prajapati
</header>
<!-- Middle area (input, search, button)-->
<section class="input-part">
<p class="info-txt"></p>
<div class="searchArea">
<input type="text" placeholder="Enter city name" spellcheck="false" required />
<i class="bx bx-search-alt searchIcon"></i>
</div>
<div class="separator"></div>
<button>Get Device Location</button>
</section>
<!-- Middle area End -->
<!-- Weather active area start -->
<section class="weather-part">
<img src="#" alt="Weather Icon" />
<div class="temp">
<span class="numb">_</span>
<span class="deg">°C</span>
</div>
<div class="weather">_</div>
<div class="location">
<i class="bx bx-map"></i>
<span>_,_</span>
</div>
<div class="bottom-details">
<div class="column feels">
<i class="bx bxs-thermometer"></i>
<div class="details">
<div class="temp">
<span class="numb-2">_</span>
<span class="deg">°C</span>
</div>
<p>Feels like</p>
</div>
</div>
<div class="column humidity">
<i class="bx bxs-droplet-half"></i>
<div class="details">
<span>_</span>
<p>Humidity</p>
</div>
</div>
</div>
</section>
<!-- Weather active area end -->
</div> <!-- Wrapper div end -->
<script src="script.js"></script>
</body>
</html>