-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
100 lines (87 loc) · 2.78 KB
/
contact.html
File metadata and controls
100 lines (87 loc) · 2.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - World Tourist Destinations</title>
<link rel="stylesheet" href="styles.css">
<style>
/* Basic styles for the contact form */
.contact-section {
padding: 40px;
max-width: 800px;
margin: 0 auto;
background-color: #f4f4f4;
border-radius: 8px;
}
.contact-section h1 {
text-align: center;
margin-bottom: 20px;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}
.contact-form input,
.contact-form textarea {
padding: 10px;
font-size: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
width: 100%;
}
.contact-form textarea {
height: 150px;
}
.contact-form button {
padding: 12px;
background-color: #5a7d8c;
color: white;
border: none;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.contact-form button:hover {
background-color: #3e5a61;
}
.contact-info {
text-align: center;
margin-top: 30px;
}
</style>
</head>
<body>
<!-- Header and Navigation Bar -->
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="countries.html">Countries</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<!-- Contact Section -->
<section class="contact-section">
<h1>Contact Us</h1>
<form class="contact-form" action="#" method="post">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<input type="text" name="subject" placeholder="Subject" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
<div class="contact-info">
<p>If you have any questions or feedback, feel free to reach out to us through this form.</p>
<p>We look forward to hearing from you!</p>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2025 World Tourist Destinations</p>
</footer>
</body>
</html>