-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (111 loc) · 3.64 KB
/
index.html
File metadata and controls
111 lines (111 loc) · 3.64 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="we sell quality rain jackets" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script type="module" src="./js/jackets.js"></script>
<script type="module" src="./js/image-carousel.mjs"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Rainydays | Home</title>
</head>
<body>
<header>
<nav>
<div class="top-logo">
<img
src="https://i.ibb.co/XxXx8pm/rd-logo.png"
alt="rainydays logo"
/>
</div>
<ul class="top-nav">
<li>
<i class="fa-solid fa-house"></i
><span><a href="index.html">Home</a></span>
</li>
<li>
<i class="fa-solid fa-magnifying-glass"></i><span>Search</span>
</li>
<li><i class="fa-solid fa-user"></i><span>Page</span></li>
<li><i class="fa-solid fa-heart"></i><span>Favorites</span></li>
<li>
<i class="fa-solid fa-cart-shopping"></i
><span><a href="checkout.html">Cart</a></span>
</li>
</ul>
</nav>
</header>
<main>
<div class="intro">
<h1>
Revamp your <span class="special-word">style!</span> Stay
<span class="special-word">comfortable</span> in any weather.
</h1>
</div>
<nav>
<ul class="for-them">
<h3>
<li><a href="jackets.html"> Our Jackets</a></li>
</h3>
</ul>
</nav>
<section class="pic-gallery">
<div class="carousel" data-carousel>
<button class="carousel-button prev" data-carousel-button="prev">
<i class="fa-solid fa-circle-arrow-left"></i>
</button>
<button class="carousel-button next" data-carousel-button="next">
<i class="fa-solid fa-circle-arrow-right"></i>
</button>
<ul data-slides>
<li class="slides" data-active>
<img
src="https://i.ibb.co/KsQ360K/hiking-slider1.jpg"
alt="happy friends on a hike in the mountains"
/>
</li>
<li class="slides">
<img
src="https://i.ibb.co/qjmxhJF/sunset-walk1.jpg"
alt="two friends walking their dogs in the sunset"
/>
</li>
<li class="slides">
<img
src="https://i.ibb.co/QNzF9fN/happy-rain-slider1.jpg"
alt="woman spreading her arms, enjoying the rain"
/>
</li>
<li class="slides">
<img
src="https://i.ibb.co/34rsqTy/happy-dog-slider1.jpg"
alt="smiling woman getting kisses from her puppy"
/>
</li>
<li class="slides">
<img
src="https://i.ibb.co/cLqy519/playful-people1.jpg"
alt="happy couple playing the rain"
/>
</li>
</ul>
</div>
</section>
</main>
<footer>
<nav>
<ul class="footer">
<img src="https://i.ibb.co/QrtYPzF/rd-bottom-logo.png" alt="" />
<li><a href="about-us.html">about us</a></li>
<li><a href="contact-us.html">contact us</a></li>
<li><a href="#">terms of service</a></li>
<li><h6>© Rainydays 2023</h6></li>
</ul>
</nav>
</footer>
</body>
</html>