-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.html
117 lines (80 loc) · 5.07 KB
/
success.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
<!DOCTYPE html>
<html lang="no">
<head>
<meta name="viewport" content="width=device-width">
<title>Rainydays - Success</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="checkout-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="about-us">
<h1>Order #34 is complete!</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<h2>
What happens next?
</h2>
<p>
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
</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>