-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact-us.html
94 lines (86 loc) · 3.21 KB
/
contact-us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./src/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./src/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./src/images/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto Mono', monospace;
background-color: #f4f4f9;
}
.container {
max-width: 1000px;
padding-top: 30px;
}
.header {
margin-bottom: 40px;
}
h1 {
color: #333;
}
.footer {
margin-top: 40px;
text-align: center;
font-size: 0.9rem;
color: #555;
}
.footer a {
color: #28a745;
text-decoration: none;
}
.btn-green {
background-color: #28a745; /* Green background */
color: white; /* White text */
width: 100%; /* Full width */
}
.btn-green:hover {
background-color: #218838; /* Darker green on hover */
}
</style>
</head>
<body>
<div class="container">
<div class="header text-center">
<h1>Contact Us</h1>
<p>We'd love to hear from you! If you have any questions, suggestions, or feedback, please reach out to us using the form below.</p>
</div>
<div class="card">
<div class="card-body">
<form action="/submit-form" method="POST">
<div class="form-group">
<label for="name">Your Name</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Your Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Your Message</label>
<textarea class="form-control" id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn btn-green">Send Message</button>
</form>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>© 2024 Tholumuzi. <a href="https://tholumuzi.co.za">All rights reserved.</a></p>
</div>
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>