-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (56 loc) · 1.88 KB
/
index.html
File metadata and controls
59 lines (56 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
<link rel="stylesheet" href="newstyle.css"/>
</head>
<body>
<header>
<h1>SALONS</h1>
</header>
<nav>
<a href="services.html">List Of Services</a>
<a href="register.html">Register</a>
</nav>
<div class="hero-image">
<div class="hero-text">
<h1 style="font-size:50px">Salons</h1>
<p>Indulge Urself</p>
<button>Register</button>
</div>
</div>
<p>Page Content..</p>
</body>
<section class="flex container">
<figure>
<img src="hair.jpg" alt="hair" width="300" height="400"/>
</figure>
<details>
Salon is the combination of hair styles and make up about all the beauty cares
</details>
<figure><img src="makeup.jpg" alt="makeup" width="300" height="400"></figure>
<details>
There are different kind of makeups
<ul>
<li><strong>Oil makeup</strong></li>
<li><strong>bridal makeup</strong></li>
<li><strong>party makeup</strong></li>
</ul>
</details>
<figure><img src="nail.jpg" alt="nail" width="300" height="400"></figure>
<details>
As we said salons come across with different things nail arts and designs also come under these part
</details>
</section>
<footer>
<figure>
<img src="socialmedia.jpg" alt="apps"/>
</figure>
</footer>
</body>
</html>