-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
77 lines (77 loc) · 3.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Fill out this form if you ever need to contact us, whether it be for a custom design, issues with an order, or you just want to let us know how you think we can improve!">
<link rel="stylesheet" type="text/CSS" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" type="image/png" href="images/etchedbylightfavicon.png">
<script src="script.js"></script>
<title>Etched By Light - Contact Us - Laser Engraving</title>
</head>
<body>
<header>
<a href="index.html" id="logo"><img src="images/etchedbylightblacklogo.png" alt="Etched by light logo"></a>
<nav>
<ul class="navlinks">
<li><a href="index.html">HOME</a></li>
<li><a href="shop.html">SHOP</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li>
<div data-icon="BAG" data-layout="BIG_ICON_TITLE_SUBTOTAL" data-responsive="TRUE" class="ec-cart-widget"></div>
<div>
<script data-cfasync="false" type="text/javascript" src="https://app.ecwid.com/script.js?68248182&data_platform=code&data_date=2021-11-15" charset="utf-8"></script>
<script type="text/javascript">Ecwid.init();</script>
</div>
</li>
</ul>
</nav>
<a class="contactbutton" href="contactus.html">Contact Us</a>
</header>
<div id="wrapper">
<main>
<h1 class="contactpagetext">Contact Us</h1>
<p class="contactpagetextp">Please fill out this form to the best of your knowledge when contacting us. Custom orders or problems with previous orders can be filled in here and we will get back to you as soon as possible with information regarding your question!</p>
<section id="contactform">
<form action="contact.php" method="post" onsubmit="return validateForm();">
<div class="formgroup">
<label for="Name">Name</label>
<input type="text" id="Name" name="Name">
</div>
<div class="formgroup">
<label for="Email">E-mail</label>
<input type="email" id="Email" name="Email">
</div>
<div class="formgroup">
<label for="Subject">Subject</label>
<input type="text" id="Subject" name="Subject">
</div>
<div class="formgroup">
<label for="Message">Message</label>
<textarea name="Comments" id="Message" cols="30" rows="10"></textarea>
</div>
<input type="submit" value="Submit" name="Submit" class="submitbutton">
</form>
</section>
</main>
</div>
<footer>
<div class="footerwrapper">
<ul class="footer-info">
<li><a href="index.html">HOME</a></li>
<li><a href="shop.html">SHOP</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="contactus.html">CONTACT US</a></li>
</ul>
<ul class="footer-info">
<li><a href="https://twitter.com/EtchedByLight"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/etched_by_light"><i class="fa fa-instagram"></i></a></li>
<li><a href="https://www.facebook.com/Etched-By-Light-109047244851748"><i class="fa fa-facebook"></i></a></li>
</ul>
<p>© 2021 Etched By Light</p>
</div>
</footer>
</body>
</html>