-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
110 lines (96 loc) · 4.57 KB
/
contact.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
<!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 href="about">About</a></li>
<li><a class="active" 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>Let's Talk!</h2>
</section>
<section id="form-details">
<form action="https://formsubmit.co/[email protected]" method="POST">
<span>LEAVE A MESSAGE</span>
<h2>We love to hear from you</h2>
<input type = "text" placeholder="Your Name" name="name" required>
<input type = "email" placeholder="Email" name="email" required>
<select name="select" required>
<option>Subject</option>
<option>Shipping Quiries</option>
<option>Technical Issue</option>
<option>Sourcing</option>
<option>Other</option>
<textarea id="message" cols="30" rows="10" placeholder="Your Message" name="message" required></textarea>
<button class="normal">Submit</button>
</select>
</form>
</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 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>