-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
78 lines (78 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>contact form</title>
<link rel="stylesheet" href="CSS/normalize.css">
<link rel="stylesheet" href="CSS/style.css">
<script type="text/javascript" src="js/contentt.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<a href="/"><li>home</li></a>
<a href="/shop.html"><li>shop</li></a>
<a href="/club.html"><li>club events</li></a>
<a href="/blog.html"><li>blog</li></a>
<a href="/contact.html"><li>contact</li></a>
</ul>
</nav>
<a href="/"><img src="images/cycleWorld.png" alt="Cycle bike shop world"></a>
</header>
<section id="contacts">
<h1>Contact Form</h1>
<p>Address:Swastika Building, San Diego, CA 92155</p>
<p>Phone:+1(800)-411-7266</p>
<form method="post">
<h3>give us your feedback</h3>
<p>your email will not be published. required feids will be marked with *</p>
<fieldset>
<input type="text" name="Fname" id="Fname" placeholder="Full name*" required>
<input type="text" name="email" id="Email" placeholder="Email*" required>
<label for="Email" class="error"></label>
<input type="text" id="tel" name="phone number" placeholder="phone number">
<label for="tel" class="error"></label>
</fieldset>
<fieldset>
<input type="text" name="sub" id="sub" placeholder="Subject*" required>
<textarea required id="feedback" name="feedback" placeholder="feedback*"></textarea>
</fieldset>
<button type="submit">Sign Up</button>
</form>
</section>
<footer>
<ul>
<li><a href="#">gift cards</a></li>
<li><a href="#">find a store</a></li>
<li><a href="#">sign up for email</a></li>
<li><a href="#">become a member</a></li>
</ul>
<ul>
<li><a href="#">get help</a></li>
<li><a href="#">order status</a></li>
<li><a href="#">shipping and delivery</a></li>
<li><a href="#">returns</a></li>
<li><a href="#">payment options</a></li>
<li><a href="#">contact us</a></li>
</ul>
<ul>
<li><a href="#">News</a></li>
<li><a href="#">About cycleworld</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Gearup culture & Career</a></li>
<li><a href="#">Investors</a></li>
<li><a href="#">Sustainable innovaction</a></li>
<li><a href="#">CA Supply</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<ul class="social">
<li><a href="http://www.facebook.com">Facebook</a></li>
<li><a href="http://www.youtube.com">YouTube</a></li>
<li><a href="http://www.plus.google.com">Google Plus</a></li>
<li><a href="http://www.instagram.com">Instagram</a></li>
</ul>
<p id="copyright"></p>
</footer>
</body>
</html>