-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
68 lines (68 loc) · 3.05 KB
/
aboutus.html
File metadata and controls
68 lines (68 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About us | Rainy Days</title>
<link rel="icon" type="image/x-icon" href="Images/favicon.png">
<meta charset="UTF-8">
<meta name="description" content="Rainjackets made with good quality">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<link href="css/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href="index.html">
<img src="Images/Rainydayslogo.png" alt="company logo" class="logo">
</a>
<nav>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="aboutus.html">ABOUT US</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="jackets.html">JACKETS</a></li>
<li>
<a href="shoppingcart.html" class="cart-link">
<img src="Images/cart.png" class="shopcart" alt="Cart icon">
<span id="cart-count">0</span>
</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="aboutus">
<h1>ABOUT RAINY DAYS</h1>
<img src="Images/aboutus.jpg" alt="man walking in forest" class="about-image">
<p>Don't let raindrops dampen your day or your style.
Our raincoat isn't just a shield against the storm;
it's a fashion statement and a functional necessity.</p>
<p>Crafted with cutting-edge waterproof materials,
our raincoat ensures you stay dry and comfortable
even during the heaviest downpour.
No more soggy clothes or ruined outings!</p>
<P>Our jackets boasts a sleek design that complements
any outfit, whether you're heading to the office, a casual
outing, or a weekend adventure. It's available in a variety
of colors and styles to suit your taste.</P>
<p>Built to last, our raincoats is made from high-quality
materials that withstand the elements and retain their
shape and color over time. Say goodbye to flimsy rain
gear that falls apart after a few uses.</p>
<p>Don't let rainy days ruin your plans or your mood.
Invest in the Raincoat Deluxe today and embrace the
great outdoors with confidence, rain or shine!</p>
</div>
</main>
<footer>
<div class="footerlink">
<ul>
<li><a href="aboutus.html">ABOUT US</a></li>
<li><a href="contact.html">CONTACT</a></li>
<li><a href="jackets.html">JACKETS</a></li>
</ul>
</div>
© 2024 Rainy Days. All rights reserved
</footer>
<script src="script.js"></script>
</body>
</html>