generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathservices.html
More file actions
133 lines (123 loc) · 5.35 KB
/
services.html
File metadata and controls
133 lines (123 loc) · 5.35 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!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="Vintage Denim Shop selling secondhand jeans in Edinburgh">
<meta name="keywords" content=" re-use, repair, vintage, secondhand, jeans, denim, used, sustainable, Edinburgh, donate, tailoring">
<link rel="stylesheet" href="assets/css/stylesheet-mobile.css">
<link rel="stylesheet" href="assets/css/stylesheet-desktop.css">
<title>ReDenim - The Vintage Denim Shop</title>
</head>
<body>
<header>
<a href="index.html">
<h1 id="header-style" class="logo-style">ReDenim</h1>
</a>
<div class="menudrop">
<i class="fa-solid fa-bars menubtn"></i>
<div class="menucontent">
<a href="index.html">Home</a>
<a href="services.html" class="active">Services</a>
<a href="contactus.html">Contact Us</a>
</div>
</div>
</header>
<section id="services-border">
<h2>Services</h2>
<div class="services ">
<div class="img-settings fit-style-img"></div>
<div class="services-text-box">
<h3>
Fit and Style Consultation
</h3>
<p class="pricing">Free of Cost</p>
<hr class="line-break">
<p>
If you after after some help for rinding the perfect pair our stylist can help you. We will take your measurements and have chat about your style preferences and you will be given some pairs to try. This consultation is free of cost, but if you want to guarantee this service on busy days, <a href="contactus.html"> contact us </a> to book an appointment.
</p>
</div>
</div>
<div class="services reverse-order">
<div class="img-settings alterations-img"></div>
<div class="services-text-box">
<h3>
Alterations
</h3>
<p class="pricing">£5 - 30</p>
<hr>
<p>
Does the waist require to be taken in or is the length not right? We offer tailoring for guaranteeing you will get the best fit. We can also alter a pair that you already own. For any other questions about this service reach through <a href="contactus.html"> contact us tab.</a>
</p>
</div>
</div>
<div class="services">
<div class="img-settings repairs-img"></div>
<div class="services-text-box">
<h3>
Repairs
</h3>
<p class="pricing">£15-30</p>
<hr class="line-break">
<p>
Do you have a pair of jeans that requires patching up. We can help extending the life of your favourite pair. For any other questions about this service reach us through <a href="contactus.html"> contact us tab.</a>.
</p>
</div>
</div>
<div class="services reverse-order">
<div class="img-settings upcycling-img"></div>
<div class="services-text-box">
<h3>
Upcycling/ Recycling<br>
</h3>
<hr class="line-break">
<p>
Do you have a pair of jeans that you no longer want? We will take them. You can either drop by or send them via mail. Send us an enquiry about recycling via <a href="contactus.html"> contac us tab </a>and you will receive instructions for sending us any unwanted denim.
</p>
</div>
</div>
</section>
<footer>
<div>
<h3>Address</h3>
<p>13 Denim Road<br>EH35DJ<br>Edinburgh</p>
</div>
<div>
<h3>Opening Times</h3>
<table>
<tr>
<th></th>
<th>Open</th>
<th>Close</th>
</tr>
<tr>
<td>Mon - Fri </td>
<td>09:00 - </td>
<td>18:00</td>
</tr>
<tr>
<td>Saturday </td>
<td>10:00 - </td>
<td>16:00</td>
</tr>
<tr>
<td>Sunday </td>
<td>10:00 - </td>
<td>16:00</td>
</tr>
</table>
</div>
<div class="icons">
<p>
<a href="https://facebook.com" rel="noopener" aria-label="Visit our Facebook page (opens in a new tab)" class="social-network" target="_blank"><i class="fa-brands fa-facebook"></i></a>
</p>
<p>
<a href="https://instagram.com" rel="noopener" aria-label="Visit our Facebook page (opens in a new tab)" class="social-network" target="_blank"><i class="fa-brands fa-instagram"></i></a>
</p>
</div>
</footer>
<script src="https://kit.fontawesome.com/abe8d276a8.js" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/abe8d276a8.js" crossorigin="anonymous"></script>
</body>
</html>