-
Notifications
You must be signed in to change notification settings - Fork 0
/
inde.htm
37 lines (36 loc) · 1.38 KB
/
inde.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather</title>
<!-- <script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/6.4.0/mdb.min.js" -->
<!-- ></script> -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0/css/font-awesome.min.css"> -->
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<div class="searchbar">
<input type="search" placeholder="Search city" class="search-bar-input">
<button class="btn" >
<i class="fa fa-search"></i>
</button>
</div><br/>
<div class="weather loading">
<h2 class='city'>Weather IN Maroli</h2><br/>
<div class="flex">
<h1 class="temp">51°C</h1 >
<img class="icon"src="https://openweathermap.org/img/wn/50d.png" alt="">
</div>
<div class="description"> Cloudy</div>
<div class="humidity">jgwgf</div>
<div class="wind"> uwhfuwhfu</div>
</div>
</div>
<script src="script.js" defer></script>
</body>
</html>