-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (61 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Free Weather App</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./images/weather-icon.png" type="image/x-icon">
</head>
<script src="https://kit.fontawesome.com/d5a1cae000.js" crossorigin="anonymous"></script>
<body>
<header>
<nav>
<!-- <ul> -->
<li><a href="./index.html">Home</a></li>
<li><a href="./index.html">About</a></li>
<li><a href="./index.html">How it Works</a></li>
<!-- </ul> -->
</nav>
</header>
<main>
<!-- Unscrollable Left Side-Bar Begins -->
<aside>
<div class="side-container">
<h1>Weather Radar</h1>
<img src="./images/weather-radar.png" >
<p>Get the most accurate and up-to-date weather report, complete with wind speed, temperature, cloud coverage, and humidity levels. Stay ahead of the storm and never be caught off guard again !</p>
<p><em>Designed & Crafted with 💛 by Aman</em></p>
</div>
</aside>
<!-- Scrollable Right Section Begins -->
<section >
<!-- Hero portion -->
<div class="hero">
<h1 class="welcome-line">Your Ultimate Guide to Mother Nature's Moods!</h1>
<div class="searchbar">
<div class="searchbar-wrapper">
<input type="search" placeholder="Search City / ZipCode/ PinCode" name="" id="city-el" />
<button id="search"><i class="fa fa-search"></i></button>
</div>
</div>
<div id="weather-wrapper">
<div id="weather-city">
<!-- City Location and Temp. -->
</div>
<hr>
<div id="content">
<div id="weather-data">
<!-- Weather Details -->
</div>
<div id="weather-condition">
<!-- Icon And Condition -->
</div>
</div>
</div>
</div>
<!-- Hero Portion Ends -->
</section>
</main>
<script src="./app.js"></script>
</body>
</html>