-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKids.html
78 lines (60 loc) · 3.44 KB
/
Kids.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
<html>
<head>
<title>Men Haircuts</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="bootstrap-grid.css"/>
<link rel="stylesheet" type="text/css" href="kids.css"/>
</head>
<script>
//show and hide dropdown list item on button click
function show_hide() {
var click = document.getElementById("list-items");
if(click.style.display ==="none") {
click.style.display ="block";
} else {
click.style.display ="none";
}
}
</script>
<script id='pixel-script-poptin' src='https://cdn.popt.in/pixel.js?id=dcf96b1202d13' async='true'></script>
<body>
<div class="container-fluid">
<header class="row" >
<h1 id="Fortyfour" class="col-sm-12 col-md-12 col-lg-12" >Forty Four</h1>
<p >
<ul class="list-unstyled">
<li class="col-sm-4 col-md-2 col-lg-2"><a href="index.html">Home</a></li>
<li class="col-sm-4 col-md-2 col-lg-2"><a href="">Services</a></li>
<li class="dropdown col-sm-4 col-md-2 col-lg-2" >
<button onclick="show_hide()" class="button">Hair Cuts <img src="down arrow 2.png" id="downarrow2"> </button>
<!-- dropdown list items will show when we click the drop button -->
<div id="list-items">
<a href="Men.html"> Men </a>
<a href="Women.html"> Women</a>
<a href="Kids.html"> Kids</a>
</div><!--list items-->
</li>
<li class="col-sm-6 col-md-2 col-lg-2"><a href="blog.html">Blog</a></li>
<li class="col-sm-6 col-md-2 col-lg-2"><a href="contactus.html">Contact us</a></li>
</ul>
</p>
</header>
<div class="row">
<img src="kids haircut 4.jpg" alt="Kidshaircut4" id="haircutimg" class="col-lg-5 col-md-5 col-sm-6 offset-sm-3 my-3 mx-3">
<p id="Kidshaircut" class="col-lg-5 offset-lg-1 col-md-5 offset-md-1 col-sm-6 offset-sm-3 ">
We guarantee a happy hair salon experience for you and your kids, our team is well trained in that area.
</p>
</div>
<div class="row">
<img src="kidsplayarea1.jpg" alt="kidsplayarea1" id="kidsplayareaimg" class="col-lg-5 col-md-5 my-3 mx-3 my-3 mx-3 ">
<p id="kidsplayarea1" class="col-lg-5 col-md-5 mx-3">
YES, we have a kids play area!! you wanna come to the salon and worried about your kids, worry no more! we have a play area with your kids favorite toys and a qualified supervision! </p>
</div>
<div class="row">
<img src="babysitter1.jpg" alt="babysitter1" id="babysitterimg" class="col-lg-5 offset-lg-1 col-md-5 offset-md-1 col-sm-6 offset-sm-3 my-3 mx-3">
<p id="babysitter1" class="col-lg-5 col-md-5 col-sm-6 offset-sm-3 ">
your kid is still a baby? we got you! we have a team of baby sitters ready for the rescue, our goal is to make sure you give yourself some love and take a break from mom duties :D </p>
</div>
</div> <!--container_12-->
</body>
</html>