-
Notifications
You must be signed in to change notification settings - Fork 0
/
redline.html
80 lines (77 loc) · 2.26 KB
/
redline.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
<!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="Redline jacket" />
<link href="/css/styles.css" rel="stylesheet" />
<title>Rainydays | Redline</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="biglogodiv">
<a href="/index.html"
><img
src="/images/RainyDays_Logo-white.png"
alt="White logo of Rainydays"
class="logobigwhite"
/></a>
</div>
<div class="redline-main">
<div class="redline-img-parent">
<h1>Redline - standard issue</h1>
<img
class="redline-img-child"
src="/assets/RainyDays_Jacket3.png"
alt="A red jacket named Redline"
/>
</div>
<div class="salespitch">
<div class="para-div">
<p>The number one skiing jacket this winter</p>
<p>
Redline is an innovative jacket made for high-adrenaline sport in
the winter. Snowboarding, skiing and other extreme sports works
seamlessly with this tight and elastic winter jacket
</p>
<p>15.99£</p>
</div>
<a class="cta-redline" href="/cart.html"
><button>Add to cart</button></a
>
</div>
</div>
</main>
<footer>
<div class="wrapper">
<div><a 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>