-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
124 lines (108 loc) · 5.31 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
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
118
119
120
121
122
123
124
<!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">
<title>Resell Stock Ireland Store</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="header">
<a href="index"><img src="img/rs-transparentweb.png" class="logo" alt=""></a>
<div>
<ul id="navbar">
<li><a href="index">Home</a></li>
<li><a href="shop">Shop</a></li>
<li><a class="active" href="about">About</a></li>
<li><a href="contact">Contact</a></li>
<a href="#" id="close"><img src="img/close.png" alt=""></a>
</ul>
</div>
<div id="mobile">
<img src="img/hamburger.png" alt="" id="bar">
</div>
</section>
<section id="aboutBanner" class="section-m1">
<h2>About Us!</h2>
</section>
<section id="about-head" class="section-p1">
<img src="/img/rs-stall.jpg" alt="">
<div>
<h2>Who Are We?</h2>
<p>Welcome to Resell Stock Ireland, your one-stop shop for limited edition and exclusive sneakers. Our business is run by a computer science student who combines his passion for sneakers and technology to bring you the most sought-after footwear from the Emerald Isle. With a keen eye for detail and a love for all things sneakers, we strive to provide our customers with the best selection of shoes, at the most competitive prices. Whether you're a collector or just looking for a fresh pair of kicks, we have something for everyone. Keep an eye out for our frequent drops and exclusive collaborations!</p>
</div>
</section>
<section id="feature" class=".section-p1">
<div class="fe-box">
<img src="img/features/free-delivery.png" alt = "">
<h4>Free Shipping</h4>
</div>
<div class="fe-box">
<img src="img/features/order.png" alt = "">
<h4>Online Orders</h4>
</div>
<div class="fe-box">
<img src="img/features/salary.png" alt = "">
<h4>Save Money</h4>
</div>
<div class="fe-box">
<img src="img/features/sourcing.png" alt = "">
<h4>Sourcing</h4>
</div>
<div class="fe-box">
<img src="img/features/loudspeaker.png" alt = "">
<h4>Discounts</h4>
</div>
</section>
<section id="newsletter" class="section-p1 section-m1" action="https://formsubmit.co/[email protected]" method="POST">
<div class="newstext">
<h4>Sign up for exclusive deals.</h4>
<p>Get email updates and <span>email only discounts</span> on all pairs.</p>
</div>
<div class="newsletterInput">
<form action="https://formsubmit.co/2e33f972235f598e9cdf1f90f80f772a" method="POST">
<!-- Honeypot -->
<input type="text" name="_honey" style="display: none;">
<!-- Disable Captcha-->
<input type="hidden" name="_captcha" value="false">
<input class="emailInput" id="email" type="text" placeholder="Your email address" name="email" required>
<input class="normal" type="submit" value="Sign Up" id="signup">
</form>
</div>
</section>
<footer class=""section-p1>
<div class="col">
<img class="logo" src="img/rs-transparentweb.png" alt="">
<h4>Contact</h4>
<p><strong>Email:</strong> [email protected]</p>
<div class="follow">
<h4>Follow us</h4>
<div class="icon">
<a href="https://www.instagram.com/resellstockireland/" target="_blank"><img src="/img/social/instagram.png" alt=""></a>
<a href="https://www.tiktok.com/@resellstockireland" target="_blank"><img src="/img/social/tik-tok.png" alt=""></a>
</div>
</div>
</div>
<div class="col about">
<h4>About</h4>
<a href="about">About Us</a>
<a href="deliveryInfo">Delivery Information</a>
<a href="privacyPolicy">Privacy Policy</a>
<a href="termsConditions.html">Terms & Conditions</a>
<a href="contact">Contact Us</a>
<a href="https://parcelsapp.com/">Track My Order</a>
</div>
<div class="paymentInfo">
<p>Secured Payment Gateways</p>
<img class="cards" src="img/cards.png" alt="">
<img class="qr" src="img/RS-QR.png" alt="">
</div>
<div class="copyright">
<p>© 2023, Resell Stock Ireland</p>
<p>Designed by <a href="https://www.linkedin.com/in/scott-lloyd-111a91222">Scott Lloyd</a></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>