-
Notifications
You must be signed in to change notification settings - Fork 0
/
Weather.html
41 lines (36 loc) · 1.16 KB
/
Weather.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Weather Dashboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Weather.css">
<link rel="stylesheet" href="Exclusive.css">
</head>
<body>
<div class="header">
<h1 class="title">Weather Dashboard</h1>
</div>
<div class="container">
<div class="search-container">
<input type="text" id="LocationInput" placeholder="Enter Location">
<button id="SearchButton">Search</button>
</div>
<div class="weather-display">
<div class="weather-information">
</div>
<div class="exclusive-features">
<h3>Exclusive Features</h3>
<ul>
<li>24/7 Weather Updates</li>
<li>Real-time Temperature</li>
<li>Weather Icons</li>
<li>Premium Weather Descriptions</li>
<li>Customizable Dashboard</li>
</ul>
</div>
</div>
</div>
<script src="Weather.js"></script>
</body>
</html>