-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (102 loc) · 4.21 KB
/
index.html
File metadata and controls
107 lines (102 loc) · 4.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Header Spa & Beauty</title>
<link rel="stylesheet" href="src/css/style.css" />
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="main-background">
<header class="header">
<nav class="header__nav">
<div class="header__logo"><img src="img/header-logo.png" /></div>
<ul class="header__nav-menu">
<li class="header__nav-item"><a href="#">Home</a></li>
<li class="header__nav-item"><a href="#">About</a></li>
<li class="header__nav-item"><a href="#">Services</a></li>
<li class="header__nav-item"><a href="#">Facilities</a></li>
<li class="header__nav-item dropdown">
<a href="#">More <img src="img/more-arrow.svg" /></a>
</li>
</ul>
<div class="header__buttons">
<a href="#" class="icon-search"
><img src="img/search-icon.svg"
/></a>
<a href="#" class="icon-cart"><img src="img/cart-icon.svg" /></a>
<a href="#" class="signin">Sign in</a>
<a href="#" class="signup">Sign up</a>
</div>
</nav>
</header>
<section class="hero">
<div class="hero__container">
<div class="hero__content">
<h1 class="title">Bring back the beauty and glow of your skin</h1>
<p class="text">
We provide you various treatments from head to toe using the best
product, advanced technology, and affordable price
</p>
<div class="buttons">
<a href="#" class="btn-book">Book Now</a>
<a href="#" class="btn-video"><span>▶</span>Watch Video</a>
</div>
<div class="hero__content-numbers">
<div class="number number-1">
<img src="img/icon-treatment.svg" />
<p class="num">15+</p>
<p class="text">Special<br />Treatment</p>
</div>
<div class="number number-2">
<img src="img/icon-therapinst.svg" />
<p class="num">25+</p>
<p class="text">
Professional<br />
Therapist
</p>
</div>
<div class="number number-3">
<img src="img/icon-cream.svg" />
<p class="num">100%</p>
<p class="text">
Herbal<br />
Cream Formula
</p>
</div>
</div>
</div>
<div class="hero__image">
<img src="img/woman.png" />
<div class="testimonial testimonial-1">
<img src="img/testimonial-icon.svg" class="testimonial-icon" />
<p class="testimonial-text">
I have a regular schedule to take treatment from GlowQueen, they
gave me the best service and treatment ever to maintain the
beauty and health of my skin
</p>
<h3 class="testimonial-author">Sophia Princeton</h3>
</div>
<div class="testimonial testimonial-2">
<img src="img/testimonial-icon.svg" class="testimonial-icon" />
<p class="testimonial-text">
For the past few years, I've had a hard time finding the right
place for skin care to deal with my complicated skin condition,
thank God I found GlowQueen to treat my skin
</p>
<h3 class="testimonial-author">Tamara Jules</h3>
</div>
</div>
</div>
</section>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>