-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
44 lines (44 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en-US" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<title>Contact Us</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto&family=Staatliches&display=swap" rel="stylesheet">
<link href="styles/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="testamonials.html">Testamonials</a></li>
<li><a href="shop.html">Shop</a></li>
</ul>
</nav>
<div id="hero_image">
<img src="images/realitysimlabs.jpg">
</div>
<div id="tagline">
<h1>Mundane is the new insane!</h1>
</div>
</header>
<section>
<h2>Are you interested in learning more about RealitySim Labs?</h2>
<form action="#" method="get" id="contact_form">
<h3>Sign up for our newsletter:</h3>
<input type="text" id="contact_name" name="contact_name" placeholder="Enter your name" required>
<input type="email" id="contact_email" name="contact_email" placeholder="Enter your email" required>
<input type="button" id="contact_submit" value="Submit">
<p id="thank_you"></p>
</form>
</section>
<footer>
© 2021 - RealitySim Labs
<br>
<a href="contact.html" id="contact_link">Contact Us</a>
</footer>
<script src="scripts/contact.js"></script>
</body>
</html>