-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContactUs.html
56 lines (39 loc) · 1.23 KB
/
ContactUs.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
<!DOCTYPE html>
<html lang='en'>
<head>
<Title>Home Page</Title>
<meta charset="UTF-8">
<link rel="stylesheet" href="stylesheet.css">
<script src="ContactUsValidation.js"></script>
</head>
<header>
<h1>Pratt Game Studios</h1>
<ul>
<li><h3><a href="HomePage.html">Home</a></h3></li>
<li><h3><a href="AboutUs.html">About Us</a></h3></li>
<li><h3><a href="FAQ.html">FAQ</a></h3></li>
<li><h3><a href="Careers.html">Careers</a></h3></li>
<li><h3><a href="ContactUs.html">Contact Us</a></h3></li>
</ul>
</header>
<main>
<div id="wrap">
<h2>We are always here to answer any of your questions.<h2>
<h4> Please fill out the form below<h4>
<form onsubmit="return validateForm()">
<label>First Name: </label>
<input type="text" id="firstName" name="firstName" required>
<br><br>
<label>Last Name: </label>
<input type="text" id="lastName" name="lastName" required>
<br><br>
<label>Email: </label>
<input type="text" id="email" name="email" required>
<br><br>
<label>Message: </label><br>
<textarea rows="10" cols="60" name="text" placeholder="Enter message"></textarea>
<br><br>
<input type="submit" value="Submit">
</div>
</main>
</html>