-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (84 loc) · 3 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
<!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>Document</title>
<link rel="stylesheet" type="text/css" href="main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@100;400;700&family=Pacifico&family=Sedgwick+Ave+Display&family=Space+Grotesk:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header><img src="assets/Artboard 22.png" /></header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="">Products</a></li>
<li><a href="">Contact</a></li>
<li><a href="">Info</a></li>
</ul>
</nav>
<main>
<div class="row banner">
<div class="col banner">
<div>
<h1 class="banner-text">
Give your hair the care they need with 30% discount!
</h1>
<button class="banner-button">Book now</button>
</div>
</div>
</div>
<div class="row cardContainer">
<div class="col">
<div class="card">
<img src="assets/hair color.jpg" alt="Hair Color" />
<h2>Hair Color</h2>
<p>
Transform your look with our range of hair color options. From
subtle changes to bold transformations, our expert stylists will
find the perfect shade for you.
</p>
</div>
</div>
<div class="col">
<div class="card">
<img src="assets/hair stylist.jpg" alt="Hair Cut" />
<h2>Hair Cut</h2>
<p>
Our skilled stylists will give you a tailored haircut that suits
your style and preferences. Stay trendy with our up-to-date latest
& trendy cutting techniques.
</p>
</div>
</div>
<div class="col">
<div class="card">
<img src="assets/hair cut.jpg" alt="Hair Styling" />
<h2>Hair Styling</h2>
<p>
Complete your look with our professional hair styling. From
elegant updos to voluminous curls, our stylists will create a
stunning hairstyle for any occasion.
</p>
</div>
</div>
</div>
</main>
<footer>
<div class="col">
<img class="footer_icon" src="assets/Artboard 1.png" />
</div>
<div class="col"><p>Copyright © 2023 Hair Day</p></div>
</footer>
</body>
</html>