-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
140 lines (123 loc) · 3.53 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!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>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #50a3a2;
color: white;
padding: 10px 0;
text-align: center;
}
nav {
text-align: center;
}
nav a {
color: #9cce31;
text-decoration: none;
padding: 5px;
}
nav a:hover {
background-color: #3e8e8e;
}
main {
flex: 1;
}
section {
flex: 1;
padding: 20px;
}
.contact-form {
background-color: white;
padding: 20px;
margin: 20px 0;
box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.contact-form label {
display: block;
margin-top: 10px;
}
.contact-form input[type="text"], .contact-form input[type="email"] {
width: 100%;
padding: 10px;
margin-top: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}
.contact-form textarea {
width: 100%;
padding: 10px;
margin-top: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}
.contact-form button {
background-color: #50a3a2;
color: white;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}
.contact-form button:hover {
background-color: #3e8e8e;
}
</style>
</head>
<body>
<header>
<h1>S & T Consulting</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="job-application.html">Job Applications</a>
<a href="about.html">About Us</a>
<a href="services.html">Services</a>
<a href="job-options.html">Look For a Job</a>
</nav>
<main>
<section>
<h1>Welcome to our company!</h1>
<p>We provide high-quality products and services to our customers.</p>
</section>
<section>
<h1>Our Mission</h1>
<p>Our mission is to be the leading provider of innovative solutions in our industry.</p>
</section>
<section class="contact-form">
<h2>Contact Us</h2>
<form id="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" cols="50" required></textarea><br>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
© 2023 S & T Consulting
</footer>
<script>
const form = document.getElementById("contact-form");
form.addEventListener("submit", (event) => {
event.preventDefault();
redirectToConfirmation();
});
function redirectToConfirmation() {
window.location.href = "questconfirm.html";
}
</script>
</body>
</html>