-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
118 lines (82 loc) · 4.06 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
<!DOCTYPE html>
<html lang="no">
<head>
<meta name="viewport" content="width=device-width">
<title>Rainydays - Product details</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="details-container">
<section id="nav" class="nav">
<a href="productlist.html?id=16">Men</a>
<a href="productlist.html?id=16">Women</a>
<a href="index.html" id="mobile-menu-logo"><img alt="rainydays logo" src="images/logo/rainydays_Logo_white_190.png"></a>
<a href="productlist.html?id=16">Kids</a>
<a href="productlist.html?id=16">Accesories</a>
<a href="#" onclick="displayhamburger()" id="mobile-menu-icon"><span class="material-icons">
menu</span>
</a>
</section>
<section class="nav mobile-nav" id="mobile-nav">
<a href="./index.html">Home</a>
<a href="productlist.html?id=16">Men</a>
<a href="productlist.html?id=16">Women</a>
<a href="productlist.html?id=16">Kids</a>
<a href="productlist.html?id=16">Accesories</a>
<a href="./customerservice.html">Customer support</a>
</section>
<section class="details-top">
<div class="image-container">
images
</div>
<div class="details-options">
<h1>Product name</h1>
<p>short description</p>
</div>
</section>
<section class="details-bottom">
<h2>Product description</h2>
<p>product details</p>
</section>
<section class="footer-section">
<div class="footer-child-left">
<h3>Usefull links</h3>
<p>Highly durable waterproof membrane ensures breathable protection against any weather</p>
<a class="footer-link" href="./about.html">About us</a>
<a class="footer-link" href="./customerservice.html">Customer support</a>
<a class="footer-link" href="./terms.html">Terms and conditions</a>
</div>
<div class="footer-child-center">
<h3>#RAINYDAYS</h3>
<p>Tag your instagram experience</p>
<div class="insta-container">
<img alt="Raincoat image by" src="./images/instagram/instashots1-s.jpg">
<img alt="Rain image by" src="./images/instagram/instashots2-s.jpg">
<img alt="Image by Luca Massimilian" src="./images/instagram/instashots3-s.jpg">
<img alt="Image by Victor xok" src="./images/instagram/instashots4-s.jpg">
<img alt="Image by Jakub kriz" src="./images/instagram/instashots5-s.jpg">
<img alt="Image by Jonny Caspari" src="./images/instagram/instashots6-s.jpg">
</div>
</div>
<div class="footer-child-right text-shadow">
<h3>About us</h3>
<p>Situated in the heart of Norway we
know bad weather!
In 2008 we made a promise to keep
our customers dry in every situation.
All of our products are tested in real
weather and we guarantee that our
products will satisfy our customers</p>
<a class="footer-link" href="./about.html">Read more</a>
</div>
<div class="footer-child-bottom text-shadow">
</div>
</section>
</div>
<script src="js/main.js"></script>
</body>
</html>