-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
106 lines (103 loc) · 3.93 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
<!DOCTYPE html>
<html>
<head>
<title>BAEKHYUN | Contact</title>
<link href="https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap" rel="stylesheet">
<link href="./contact.css" type="text/css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/53e63c2ea0.js" crossorigin="anonymous"></script>
<link rel="shortcut icon" type="image/png" href="https://img.icons8.com/color/32/000000/music-transcript.png"/>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html"><i class="fa fa-home"></i></a></li>
<li><a href="./shop.html">Shop</a></li>
<li><a href="./gallery.html">Gallery</a></li>
<li><a href="./about.html">About The Artist</a></li>
<li>Fan Forum (COMING SOON!)</li>
</ul>
</nav>
</header>
<div class="contact" id="contact">
<h1>Contact Us</h1>
</div>
<div class="form">
<form id= "contact" name="contactform" action="./thankyou.html" onsubmit="return true">
<section class="firstname">
<label for="firstname">
First Name: <input type="text" name="firstname" id="firstname" required>
</label>
</section>
<section class="lastname">
<label for="lastname">
Last Name: <input type="text" name="lastname" id="lastname" required>
</label>
</section>
<section class="email">
<label for="email">
Email Address: <input type="email" name="email" id="email" required>
</label>
</section>
<section class="Order Number">
<section class="ordernum">
<label for="ordernum">
Order Number: <input type="number" name="ordernum" id="ordernum">
<p>Order Numbers can be found in your confirmation email. <br>
Don't have a question about your order? Leave the Order Number field blank and type your request below!
</p>
</label>
</section>
</section>
<section class="contact">
<label for="inquire">
<br>
How may we help you?
<br><br>
<textarea id="inquire" name="inquire" rows="6" cols="50" required></textarea>
</label>
</section>
<section class="submit">
<button onclick="sendContact();">Send</button>
</section>
</form>
</div>
</div>
<div class="citylights">
<img src="web/cltrans.png" alt="City Lights Logo">
</div>
<div class="contact-info">
<div class="phone">
<h3>Phone:</h3>
<p>(123)456-7891</p>
<img src="icons/phone36px.png">
</div>
<div class="address">
<h3>Address:</h3>
<p>123 Los Angeles Boulvard,
<br>
Los Angeles, CA
<br>
90013</p>
<img src="icons/location32px.png">
</div>
<div class="hours">
<h3>Hours:</h3>
<p>9AM-4PM PST
<br>
Monday-Friday*</p>
<img src="icons/shop36px.png">
</div>
<div class="email">
<h3>Email Us:</h3>
<p>citylights92@email.com
<br><br>
<img src="icons/at32.png">
</div>
</div>
<p>*Closed on Holidays: Christmas, New Year, New Year's Eve, and Thanksgiving</p>
<!--script for form-->
<script src="formscript.js"></script>
</body>
</html>