-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (71 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
<!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">
<link rel="stylesheet" href="app.css">
<link rel="icon" type="image/jpg" href="images/zlZUttA4NQCR.gif" sizes="60x60">
<a href="https://icons8.com/icon/NVAtYk7nzMFv/sunrise"></a>
<script src="https://kit.fontawesome.com/62e002bcf4.js" crossorigin="anonymous"></script>
<title>Document</title>
</head>
<body>
<nav>
<div id="nav-bar">
<div class="head">
<img src="https://img.icons8.com/doodle/48/000000/rainbow--v1.png"/>
<p style="color:rgb(217, 230, 230);">Weather info</p>
</div>
<a href="">Home</a>
<input
type="text"
id="upper-search"
placeholder="Search..."
autocomplete="off">
<button id="upper-btn">Submit</button>
</div>
</nav>
<div class="container">
<div class="date-container">
<div class="time" id="time">12:00 <span id="am-pm">PM</span></div>
<div class="date" id="date">Monday, 13 May</div>
</div>
</div>
<div class="main-container">
<h2>Search By <span id="locate">Location</span></h2>
<div>Write the location to get weather</div>
<div class="input-icons">
<i class="fas fa-map-marker-alt icon"></i>
<input type="text" class="main-sc-input" placeholder="Search the City">
</div>
<div>
<button class="wt-btn">Weather</button>
<button class="fc-btn">Forecast</button>
</div>
</div>
<div class="weather-data">
</div>
<div id="forecast-container">
<h1 id="heading"></h1>
<div id="forecast-data">
<!-- <div id="heading"></div> -->
<div class="forecast">
</div>
<div class="forecast">
</div>
<div class="forecast">
</div>
<div class="forecast">
</div>
<div class="forecast">
</div>
</div>
</div>
<footer>
<a href="https://sur16-cse.github.io/">Powered By © Surbhi</a></p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/places.js@1.19.0"></script>
<script src="./app.js"></script>
</body>
</html>