-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathcontact.html
57 lines (49 loc) · 1.65 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - WeatherWise</title>
<link rel="stylesheet" href="contact.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home<span></span></a></li>
</ul>
</nav>
<div class="container">
<h1>Contact Us</h1>
<p>We'd love to hear from you!</p>
</div>
</header>
<section class="contact-section">
<div class="container">
<h2>Get in Touch</h2>
<p>If you have any questions, feedback, or suggestions, feel free to reach out to us using the form below:</p>
<form action="#" method="POST" class="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Send Message</button>
</form>
<div class="contact-info">
<h3>Contact Information</h3>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Phone:</strong> **************</p>
<p><strong>Address:</strong> 123 Weather Lane, Forecast City</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 SkyStream. All rights reserved.</p>
</div>
</footer>
</body>
</html>