-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.89 KB
/
index.html
File metadata and controls
50 lines (44 loc) · 1.89 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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./asset/weatherapp.jfif" type="image/x-icon">
<title>Weather App</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main-container">
<div class="container">
<div class="input-box">
<input type="text" placeholder="Enter your city">
<i class="search-btn fa-solid fa-magnifying-glass"></i>
</div>
<div class="centre-box">
<img width="160px" height="160px" src="asset/image.png" alt="">
<div class="temp-box common2">
<div class="term">Temperature:</div>
<div class="temp-value"></div>
</div>
</div>
<div class="last-box">
<div class=" common1">
<img width="90px" height="90px" src="asset/wind.png" alt="">
<div class="speed-box common2">
<div class="term">Speed:</div>
<div class="speed-value"></div>
</div>
</div>
<div class="common1">
<img width="90px" height="90px" src="asset/humidity.png" alt="">
<div class="humidity-box common2">
<div class="term">Humidity:</div>
<div class="humidity-value"></div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>