-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
119 lines (119 loc) · 3.72 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
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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="You can contact the RainyDays support team with just a form !"
/>
<title>RainyDays | Contact</title>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;700&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header>
<div>
<a href="index.html" class="navLogo"
><img src="images/logo.png" alt="website logo"
/></a>
</div>
<input type="checkbox" id="menu-checkbox" />
<label for="menu-checkbox" class="hamburger-menu"
><i class="fas fa-bars fa-2xl"></i>
<span class="visually-hidden">Label for hamburger menu</span></label
>
<nav class="navMenu navContainer">
<a href="/collection.html">Men</a>
<a href="">Womens</a>
<a href="">Kids</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="cart.html"
><i class="fa-solid fa-cart-shopping"></i
><span class="visually-hidden">Visit RainyDays.com</span></a
>
</nav>
</header>
<section>
<hr class="lineHeader" />
</section>
<main class="contactContainer">
<div class="left">
<img
src="images/contact.png"
alt="man on the top of the mountain looking down"
/>
</div>
<section class="right">
<h1>
Please get in touch and our expert support team will answer all your
questions.
</h1>
<h2>Our working hours are from 9:00 to 13:00</h2>
<form class="form">
<div class="form-group">
<label for="fullname">Full name</label>
<input type="text" name="fullname" id="fullname" required />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email" required />
</div>
<div class="form-group">
<label for="yourMsg">Your message</label>
<textarea
name="yourMs"
id="yourMsg"
minlength="50"
required
></textarea>
</div>
<button class="btnPrimary btnFormPrimary" type="submit" value="Send">
SEND
</button>
</form>
</section>
</main>
<footer>
<div>
<hr class="lineFooter" />
</div>
<div class="footerContainer">
<div class="shipping">
<h3>Shipping</h3>
<p>
Get free delivery <span class="lineBreak"></span> for orders over
<span class="lineBreak"></span> 2000NOK
</p>
</div>
<div class="socialMedia">
<h3>You can find us on</h3>
<div class="socialIcons">
<i class="fa-brands fa-facebook fa-2xl"></i>
<i class="fa-brands fa-twitter fa-2xl"></i>
<i class="fa-brands fa-instagram fa-2xl"></i>
</div>
</div>
<div class="aboutUs">
<h3>About us</h3>
<div class="conditions">
<p>Privacy Statement</p>
<p>Sales conditions</p>
<p>Maintenance</p>
</div>
</div>
</div>
</footer>
<script
src="https://kit.fontawesome.com/aafd0c0d38.js"
crossorigin="anonymous"
></script>
</body>
</html>