-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
87 lines (83 loc) · 2.51 KB
/
about.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
<!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="About Rainydays" />
<link href="/css/styles.css" rel="stylesheet" />
<title>Rainydays | About</title>
</head>
<body>
<header>
<div class="wrapper">
<div>
<a href="/index.html">Home</a>
</div>
<div>
<a href="/browse.html">Browse collection</a>
</div>
</div>
<div>
<a href="/cart.html"
><img class="cart" src="/images/cart.png" alt="cart icon" />
</a>
</div>
</header>
<main>
<div class="about__meat">
<div class="about__texts">
<h1>About us</h1>
<p>
Rainydays is passioned about giving people the ability to find, grow
and experience. With the available jackets we produce, you can
achieve the most of your day - even on the rainiest, coldest, or the
most wonderful of days.
</p>
<p>
Rainydays are initially a small start-up company that has grown via
the help of our customers, and we are now able to do business from
the big apple itself.
</p>
<p>
We thrive in selling you, the customer, jackets that are quality
ensured for you weekend explorations out in nature
</p>
<p>
Visit our ‘Contact us’ page bottom left corner to get in contact
with us, and please pay us a visit!
</p>
</div>
<div class="rainyworkers">
<img
class="rainyimg"
src="/images/shopify.jpeg"
alt="#"
class="shopify"
/>
<img
class="rainyimg"
src="/images/gettyimages.jpeg"
alt="#"
class="gettyimages"
/>
</div>
</div>
</main>
<footer>
<div class="wrapper">
<div><a class="current" href="/about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div>
</div>
<div>
<a href="/index.html"
><img
class="logosmall"
src="/images/RainyDays_Logo-white-small.png"
alt="small rainydays logo"
/></a>
</div>
</footer>
<div class="copyright">Copyright Rainydays LLC ©</div>
</body>
</html>