forked from kanishk-001/weather-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.html
105 lines (97 loc) · 3.88 KB
/
Home.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather Check</title>
<link rel="stylesheet" href="assets/css/home.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="container">
<a href="#" class="logo"
><img src="assets/icons/favicon.svg" alt=""
/></a>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
</nav>
<!-- Hero section -->
<section class="hero">
<div class="container">
<h1>Check the weather anytime, anywhere</h1>
<p>
Get accurate and real-time weather updates right at your
fingertips.
</p>
<a href="index.html" class="btn-get-started">Get Started</a>
</div>
</section>
<!-- About section -->
<section class="about" id="about">
<div class="about_title">
<h2>About Us</h2>
</div>
<div class="container">
<img
src="https://images.pexels.com/photos/14501713/pexels-photo-14501713.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2"
alt=""
/>
<p>
At Weather Check, we are dedicated to providing real-time
weather updates to help you plan your day effectively.
Whether you are commuting to work, planning an outdoor
event, or simply curious about the current weather
conditions, our platform provides accurate, up-to-date
information to keep you informed.
<br />
Our mission is to deliver reliable weather information with
ease and convenience. Stay ahead of the weather with our
user-friendly platform, accessible from any device.
</p>
</div>
</section>
<!-- Contact section -->
<section class="contact" id="contact">
<div class="container">
<h2>Contact Us</h2>
<p>
If you have any questions or need assistance, feel free to
get in touch using the form below.
</p>
<form action="#" method="POST" class="contact-form">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required />
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea
id="message"
name="message"
rows="5"
required
></textarea>
</div>
<button type="submit" class="btn-submit">
Send Message
</button>
</form>
</div>
</section>
<!-- Footer section -->
<section class="footer" id="footer">
<div class="container">
<p>© 2024 Weather Check. All rights reserved.</p>
</div>
</section>
</body>
</html>