-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
123 lines (122 loc) · 3.7 KB
/
contact.html
File metadata and controls
123 lines (122 loc) · 3.7 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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="Page where you can get in contact with Rainy Days"
/>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<link href="css/styles.css" rel="stylesheet" />
<script defer src="JS/forms.js"></script>
<script
src="https://kit.fontawesome.com/cadf1bec62.js"
crossorigin="anonymous"
></script>
<!-- Hotjar Tracking Code for https://wonderful-crisp-1d1766.netlify.app/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3758748,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<title>Rainy Days | Contact</title>
</head>
<body>
<header>
<a href="index.html">
<img src="/images/RainyDays_Logo.png" alt="logo of rainy days" class="logo">
</a>
<input type="checkbox" id="menu-checkbox">
<label for="menu-checkbox" class="hamburger-icon"><i class="fa-solid fa-bars"></i></label>
<nav>
<ul>
<li><a href="list_of_jackets_men.html">Men</a></li>
<li><a href="list_of_jackets_women.html">Women</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="flower_power_products.html">Flower Power</a></li>
</ul>
</nav>
<div class="nav_right">
<input type="text" placeholder="..Search">
<a href="checkout_page.html" class="shopping_cart">
<img src="images/shopping_cart_FILL0_wght400_GRAD0_opsz48.png" alt="Shopping cart symbol">
</a>
</div>
</header>
<main class="main_contact">
<h1>Contact us</h1>
<p>
If you are wondering about anything, please contact us using this form.
</p>
<div id="error"></div>
<form id="form">
<label for="name">Full Name</label><br />
<input
class="input_style"
required
type="text"
placeholder="..."
id="name"
name="name"
/><br />
<label for="mail">E-mail</label><br />
<input
class="input_style"
type="text"
required
placeholder="..."
id="mail"
name="mail"
/><br />
<label for="phone">Phone Number</label><br />
<input
class="input_style"
type="text"
required
placeholder="..."
id="phone"
name="phone"
/><br />
<label for="write">Write your message here</label><br />
<input
class="input_message input_style"
type="text"
required
placeholder="..."
id="write"
name="write"
/><br />
<button class="orange-button submit-button" type="submit">
Submit
</button>
</form>
</main>
<footer>
<img
src="/images/RainyDays_Logo.png"
alt="logo of rainy days"
class="logo"
/>
<p>returns</p>
<p>sustainability</p>
<a href="contact.html">
<p>contact us</p>
</a>
<p>shipping & delivery</p>
<a href="about.html">
<p>about us</p>
</a>
<p>washing instructions</p>
</footer>
</body>
</html>