-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.57 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
<!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" />
<title>Weather App</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="icon" type="ico/images" href="clear.png" />
<link rel="stylesheet" href="Weather.css" />
</head>
<body>
<div class="container">
<div class="input-search">
<input type="text" name="" id="search" placeholder="Search" />
<i class="fas fa-search" id="search-icon"></i>
</div>
<div class="locate-date">
<h3 class="location">
Delhi
<br />
India
</h3>
<h5 class="date">
</h5>
<h2 class="main-deg">˚C</h2>
<div class="weather">
<img src="mist.png" alt="image weather" id="weather" />
<h4 class="about">Weather</h4>
</div>
<span class="average">Min˚C / Max˚C</span>
<h5>
<a class="link" href="https://github.com/Vishwajeet-Kumar-Patel">
Vishwajeet Kumar
<i class="fab fa-github"></i>
</a>
</h5>
</div>
</div>
<script src="Weather.js"></script>
</body>
</html>