-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
100 lines (84 loc) · 4.3 KB
/
index.htm
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="img_section">
<div class="default_info">
<h2 class="def_day">Sunday</h2>
<span class="def_date">1 April 2024</span>
<div class="icons">
<img src=" https://openweathermap.org/img/wn/[email protected]" class="mainicon" style="height: 10rem ;">
<h2 class="city">Mumbai</h2>
<h2 class="wea_temp">22°C</h2>
<br>
<h3 class="cloudtxt">Overcast Clouds</h3>
</div>
</div>
</div>
<div class="content_section">
<form class="input1">
<input type="text" placeholder="Search Your City...." class="input" >
<button type="submit" class="btn_search"><i class="fa-solid fa-magnifying-glass"></i> Search</button>
</form>
<div class="day_info">
<div class="content">
<p class="title">City</p>
<span class="value">Mumbai</span>
</div>
<div class="content">
<p class="title">Temprature</p>
<span class="value">22°C</span>
</div>
<div class="content">
<p class="title">Humidity</p>
<span class="value">2%</span>
</div>
<div class="content">
<p class="title">Wind Speed</p>
<span class="value">2.92 Km/h</span>
</div>
</div>
<div class="list_content">
<ul>
<li>
<img src=" https://openweathermap.org/img/wn/[email protected]" >
<span>Mon</span>
<span class="day_temp">22°C</span>
</li>
<li>
<img src=" https://openweathermap.org/img/wn/[email protected]" >
<span>Mon</span>
<span class="day_temp">22°C</span>
</li>
<li>
<img src=" https://openweathermap.org/img/wn/[email protected]" >
<span>Mon</span>
<span class="day_temp">22°C</span>
</li>
<li>
<img src=" https://openweathermap.org/img/wn/[email protected]" >
<span>Mon</span>
<span class="day_temp">22°C</span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="contact-me">
<a href="https://mail.google.com/mail/u/0/#inbox" class="btn"><img src="gmail.jpg" width="40px" height="40px" alt="gmail image"></a>
<a href="https://www.linkedin.com/in/chetan-vilas-pawar-a023a2240/" class="btn"><img src="LinkedIn.png" width="40px" height="40px" alt="LinkedIn image"></a>
<a href="https://github.com/Chetan-Vilas-Pawar" class="btn"><img src="github1.png" height="40px" alt="GitHub image"></a>
<a href="" class="btn"><img src="twitter.png" height="40px" height="40px" alt="twitter image"></a>
</div>
</body>
</html>