-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
116 lines (107 loc) · 3.69 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
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>Contact Us - Alzheimer's Support Hub</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
background-color: #fff; /* Change background color to white */
color: #000; /* Change text color to black */
}
.container {
width: 80%;
margin: auto;
}
footer {
background-color: rgba(53, 52, 52, 0.811);
padding: 20px 0;
text-align: center;
color: #fff; /* Change text color to white */
}
.contact {
display: flex;
justify-content: center;
align-items: center;
min-height: 90vh; /* Adjust this value as needed */
}
.contact-form {
width: 50%;
padding: 40px 20px; /* Add padding from the top and also increase the overall padding */
border: 2px solid #000; /* Add border with black color */
background-color: #fff; /* Change background color to white */
box-sizing: border-box; /* Include padding and border in the width */
}
.contact-form label {
display: block;
margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #000; /* Add border with black color */
border-radius: 5px;
}
.contact-form input[type="submit"] {
background-color: #000; /* Change submit button background color to black */
color: #fff; /* Change submit button text color to white */
border: none;
cursor: pointer;
}
.contact-form input[type="submit"]:hover {
background-color: #444; /* Darken the background color on hover */
}
</style>
</head>
<body>
<header>
<div class="container">
<!-- Add image tag -->
<img src="azheimer.png" alt="Alzheimer's Support Hub Logo" class="logo">
<h1>Welcome to Alzheimer's Support Hub</h1>
<nav align="center">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="games.html" id="gamesButton">Games</a></li>
<!-- New buttons for resources and chatbot -->
<li><a href="resources.html">Resources</a></li>
<li><a href="chatbot.html" id="chatbotButton">Chatbot</a></li>
<li class="sos-button"><a href="sos.html">SOS</a></li>
</ul>
</nav>
</div>
</header>
<section class="contact">
<div class="container">
<div class="contact-form">
<h2>Contact Us</h2>
<p>Fill out the form below to get in touch with us:</p>
<form action="submit_contact.php" method="POST">
<label for="name">Your Name:</label><br>
<input type="text" id="name" name="name" required><br>
<label for="email">Your Email:</label><br>
<input type="email" id="email" name="email" required><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br>
<input type="submit" value="Submit">
</form>
</div>
</div>
</section>
<footer>
<div class="container">
<p>Alzheimer's Support Hub © 2024. All rights reserved. <a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a> | <a href="#">Accessibility Statement</a></p>
</div>
</footer>
</body>
</html>