-
Notifications
You must be signed in to change notification settings - Fork 19
/
Home.html
116 lines (106 loc) · 5.12 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
106
107
108
109
110
111
112
113
114
115
116
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/home.css" />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" href="./assets/icons/favicon.svg" type="image/svg+xml" />
</head>
<body>
<nav class="navbar navbar-expand-lg bg-dark navbar-dark">
<div class="container">
<a href="#" class="navbar-brand">
<img src="assets/icons/favicon.svg" alt="Logo" height="30" width="30" />
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a href="#home" class="nav-link">Home</a></li>
<li class="nav-item"><a href="#about" class="nav-link">About</a></li>
<li class="nav-item"><a href="#contact" class="nav-link">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero section -->
<section class="hero">
<video autoplay loop muted playsinline class="hero-video">
<source src="https://cdn.dribbble.com/userupload/14498533/file/original-62a0c5265de6f4fcadab4e87ab4ec7d5.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<div class="hero-content">
<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" autocomplete="off" required />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" autocomplete="off" 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>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>