generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
prices.html
99 lines (92 loc) · 4.24 KB
/
prices.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
<!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="Cutting Edge Color hair salon specialized in color">
<meta name="keywords" content="hair, hair salon, hair color, hair dye">
<link rel="stylesheet" href="assets/css/style.css">
<title>PP1 - Vibrant Cuts</title>
</head>
<body>
<!-- Header -->
<header>
<div class="header-container">
<div class="logo">
<a href="index.html">
<h1 id="logo">Vibrant Cuts</h1>
</a>
</div>
<nav class="navigation">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="prices.html" class="active">Prices</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Price list -->
<section id="prices">
<div id="prices-txt">
<p>At Vibrant Cuts, we believe that great hair should be accessible to everyone. That's why we offer a wide range of services at competitive prices to suit every budget. Our prices are based on the level of experience and qualifications of our stylists, so you can be sure you're getting the best value for your money.</p>
<h2>Haircut:</h2>
<ul>
<li>Women's haircut: $50 - $80</li>
<li>Men's haircut: $30 - $50</li>
<li>Children's haircut (under 12): $25 - $35</li>
</ul>
<h2>Coloring:</h2>
<ul>
<li>Root touch-up: $70 - $100</li>
<li>Full color: $90 - $120</li>
<li>Highlights (partial): $80 - $100</li>
<li>Highlights (full): $100 - $150</li>
<li>Balayage: $120 - $180</li>
<li>Ombre: $120 - $180</li>
</ul>
<h2>Styling:</h2>
<ul>
<li>Blowout: $30 - $45</li>
<li>Updo: $70 - $100</li>
<li>Special occasion styling: $75 - $120</li>
</ul>
<h2>Other services:</h2>
<ul>
<li>Keratin treatment: $150 - $300</li>
<li>Deep conditioning treatment: $20 - $40</li>
</ul>
<p class="lower-txt">Please note that prices may vary depending on the length and thickness of your hair, and additional charges may apply for extra long or thick hair.</p>
<p id="recommendation-txt" class="lower-txt">We recommend booking a consultation with one of our stylists to discuss your specific needs and give you an accurate quote. Contact us today to schedule your appointment and take the first step towards beautiful, healthy hair.</p>
</div>
</section>
<!-- Footer -->
<footer class="social-network">
<p>08-123 456 789</p>
<ul>
<li class="social-icons">
<a href="https://www.facebook.com/" target="_blank" aria-label="Visit our Facebook page. Opens in a new tab." rel="noopener"><i class="fa-brands fa-square-facebook"></i></a>
</li>
<li class="social-icons">
<a href="https://www.instagram.com/" target="_blank" aria-label="Visit our Instagram page. Opens in a new tab." rel="noopener"><i class="fa-brands fa-instagram"></i></a>
</li>
<li class="social-icons">
<a href="https://twitter.com/" target="_blank" aria-label="Visit our Twitter page. Opens in a new tab." rel="noopener"><i class="fa-brands fa-square-twitter"></i></a>
</li>
</ul>
<p>Stockholm, Sweden</p>
</footer>
<!-- Fontawesome kit -->
<script src="https://kit.fontawesome.com/16606b6431.js" crossorigin="anonymous"></script>
</body>
</html>