-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
78 lines (70 loc) · 3.35 KB
/
Copy pathcontact.html
File metadata and controls
78 lines (70 loc) · 3.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Moving to Alabama Guide</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
header { background-color: #333; color: #fff; padding: 10px; text-align: center; }
nav { background-color: #444; padding: 10px; text-align: center; }
nav a { color: #fff; text-decoration: none; margin: 0 15px; font-weight: bold; }
nav a:hover { color: #ddd; }
main { padding: 20px; max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
h2 { color: #333; }
p { line-height: 1.6; }
.contact-form { max-width: 500px; }
.form-group { margin-bottom: 15px; }
label { display: block; margin-bottom: 5px; font-weight: bold; }
input[type="text"], input[type="email"], textarea { width: 100%; padding: 8px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; }
textarea { height: 120px; resize: vertical; }
button { background-color: #333; color: white; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; }
button:hover { background-color: #555; }
footer { background-color: #333; color: #fff; padding: 10px; text-align: center; position: fixed; bottom: 0; width: 100%; }
</style>
</head>
<body>
<header>
<h1>Moving to Alabama Guide</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="why-move.html">Why Move to Alabama?</a>
<a href="best-cities.html">Best Cities to Live in Alabama</a>
<a href="moving-guide.html">Moving Guide</a>
<a href="resources.html">Resources</a>
<a href="alabama-map.html">Alabama Map</a>
<a href="contact.html">Contact</a>
</nav>
<main>
<h2>Contact Us</h2>
<p>Have questions about moving to Alabama? We're here to help! Send us a message and we'll get back to you as soon as possible.</p>
<form class="contact-form" action="#" method="post">
<div class="form-group">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject:</label>
<input type="text" id="subject" name="subject" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Tell us about your move to Alabama or ask any questions you might have..." required></textarea>
</div>
<button type="submit">Send Message</button>
</form>
<p style="margin-top: 30px;"><strong>Prefer to reach us directly?</strong></p>
<p>Email: info@movingtoalabamaguide.com<br>
Phone: (555) 123-BAMA</p>
<p>We typically respond within 24 hours during business days.</p>
</main>
<footer>
<p>© 2025 Moving to Alabama Guide</p>
</footer>
</body>
</html>