-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
62 lines (57 loc) · 2.32 KB
/
contact.html
File metadata and controls
62 lines (57 loc) · 2.32 KB
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
<!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="Contact Guitar Kings for amazing products you`ll love"/>
<title>Guitar Kings | Contact</title>
<link href="css/styles.css" rel="stylesheet">
<link href="css/contact.css" rel="stylesheet">
<link href="css/media.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/b318972c4d.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<a href="index.html" class="logo">Guitar Kings</a>
<label for="hamburger-menu"><i class="fa-solid fa-bars"></i></label>
<input type="checkbox" id="hamburger-menu" />
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="guitars.html">Guitars</a></li>
<li><a href="contact.html" class="underline">Contact</a></li>
</ul>
</nav>
</header>
<main class="contact">
<h1>Contact</h1>
<form action="submit.php" methot="POST">
<div class="form-wrapper">
<section>
<label for="name">Full Name</label>
<input type="text" id="Full name" name="fullname">
<label for="email">Email</label>
<input type="email" id="Email" name="Email">
<label for="guitar">Guitar</label>
<select name="guitar" id="Guitar">
<option value="Adirndack Red">Adirondack Red</option>
<option value="Adirndack Blue">Adirondack Blue</option>
<option value="Adirndack Green">Adirondack Green</option>
</select>
<div>
<input type="checkbox" id="update" name="update">
<label for="update">Sign up for email updates.</label>
</div>
</section>
<section>
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" cols="30"></textarea>
</section>
</div>
<input type="submit" value="Send Now" class="cta cta-large" />
</form>
</main>
<footer>Copyright ©</footer>
</body>
</html>