generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
107 lines (94 loc) · 3.87 KB
/
index.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
<!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" class="active">Home</a>
</li>
<li>
<a href="prices.html">Prices</a>
</li>
<li>
<a href="gallery.html">Gallery</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<!-- Hero image -->
<section id="hero-outer">
<div id="hero-image"></div>
<div id="txt-hair-talk">
<h2>Let your hair do the talking</h2>
</div>
</section>
<!-- What we do -->
<section>
<div id="what-we-do-h2">
<h2>What we do</h2>
</div>
<div id="what-container">
<div class="what-div" id="what-cut">
<img src="assets/images/cut.jpg" alt="hand holding a hair dryer" id="cut-img">
<h3>Cut</h3>
<p class="what-p-line">Discover the perfect cut for you. Our skilled stylists are experts in the latest hair cutting techniques and trends to bring out your unique style.</p>
</div>
<div class="what-div" id="what-color">
<img src="assets/images/color_s.jpg" alt="girl with pink hair" id="color-img">
<h3>Color</h3>
<p class="what-p-line">Unleash your true color. Our expert stylists specialize in custom hair coloring to enhance your natural beauty and bring out your unique style.</p>
</div>
<div class="what-div" id="what-style">
<img src="assets/images/style_s.jpg" alt="hand holding a hair dryer" id="style-img">
<h3>Style</h3>
<p>Elevate your hair game. Our stylists specialize in crafting the perfect hairstyle to match your look and personality.</p>
<br>
</div>
</div>
</section>
<!-- Background img 2 fixed -->
<section id="bg2-outer">
<div id="bg2-img"></div>
<h2>Life is too short to have boring hair!</h2>
</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>