-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
101 lines (92 loc) · 3.32 KB
/
contact.html
File metadata and controls
101 lines (92 loc) · 3.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="/Favicon/favicon-16x16.png" type="image/x-icon">
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact us page</title>
</head>
<body class="contact-body">
<header class="contact-header">
<div id="background-contact"></div>
<div class="header">
<a href="/">
<img src="main-logo.png" id="logo" alt="Rainydays logo">
</a>
<div class="nav">
<a href="./jacktets.html">Shop</a>
<a href="./contact.html">Contact us</a>
<a href="./about-us.html">About us</a>
<a href="./checkout.html" id="menu-cart">Cart</a>
</div>
<input type="checkbox" id="hamburger-input" class="hamburger-show">
<label id="hamburger-menu" for="hamburger-input">
<nav id="sidebar-menu">
<h3>Menu</h3>
<ul>
<li><a href="./jacktets.html">Shop</a></li>
<li><a href="./contact.html">Contact us</a></li>
<li><a href="./about-us.html">About us</a></li>
<li><a href="./checkout.html">Cart</a></li>
</ul>
</nav>
</label>
<div class="overlay"></div>
</div>
<div class="container">
<h1>Contact Us</h1>
<form>
<div class="form-group">
<label for="first-name">First Name*</label>
<input type="text" id="first-name" name="first-name" required>
</div>
<div class="form-group">
<label for="last-name">Last Name*</label>
<input type="text" id="last-name" name="last-name" required>
</div>
<div class="form-group">
<label for="email">Email*</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message*</label>
<textarea id="message" name="message" required></textarea>
</div>
<button id="submit-btn" type="submit">Send</button>
</form>
</div>
</header>
<footer class="footer-contact">
<img src="/main-logo.png" alt="Main logo of Rainydays">
<div>
<h5>Support</h5>
<a href="#">Contact us</a>
<br>
<a href="#">FAQ</a>
<br>
<a href="#">Returns</a>
<br>
<a href="#">Shipping</a>
<br>
<a href="#">Payment</a>
</div>
<div>
<h5>Rainydays</h5>
<a href="#">About us</a>
<br>
<a href="#">Career</a>
<br>
<a href="#">Locate us</a>
</div>
<div>
<h5>Policies</h5>
<a href="#">Privacy policy</a>
<br>
<a href="#">Cookies</a>
<br>
<a href="#">Integrity policy</a>
</div>
</footer>
</body>
</html>