-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeet.html
More file actions
117 lines (99 loc) · 4.79 KB
/
meet.html
File metadata and controls
117 lines (99 loc) · 4.79 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
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<title>Pups Parlour Dog Grooming</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Styles -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Bootstrap 4 -->
<link rel="stylesheet" href="styles/style.css">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
</head>
<body>
<a href="index.html" alt="Home Page Link">
<img src="./images/banners/banner.jpg" alt="header" class="img-fluid banner">
<img src="images/banners/bannersmall.png" alt="header" class="img-fluid bannersmall">
</a>
<div class="main">
<!-- start main container -->
<nav>
<!-- navgigation bat -->
<div class="topnav" id="myTopnav">
<a href=""></a>
<a href="index.html">Home</a>
<a href="treatments.html">Treatments</a>
<a href="meet.html">Meet The Groomer</a>
<a href="gallery.html">Gallery</a>
<a href="testimonials.html">Testimonials</a>
<a href="contact.html">Contact</a>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">Menu ☰</a>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</nav>
<div class="container">
<div class="meet">
<!-- this is the main content of the page, class will change depending on what page this is. -->
<h2> Meet The Groomer </h2>
<h4><b>Samantha Bettany</b></h4>
<p>Before opening the parlour four years ago, I started out by getting my Level 3 Extended Diploma in Animal
Management achieving a grade of triple distinction*.</p>
<img src="https://pupsparlour.files.wordpress.com/2017/11/pippin.jpg?w=1650" class="img-fluid center-block">
<p>Over the next three years I worked in boarding kennels. This involved looking after the dogs, walking them,
bathing them and generally making sure they were well.</p>
<p>Moving on from the kennels I decided that it was time to explore my interest in dog grooming and over the
next year I passed my City & Guilds Level 3 Diploma in Dog Grooming and Styling to become a qualified groomer.
</p>
<p>It was at this point I followed my passion and dreams to open my own dog grooming parlour. Pups Parlour has
now been open and running successfully for over four years and my passion for dogs is growing with every dog
that visits me. It is my aim to provide the highest standard and quality when it comes to grooming.</p>
<p>I am a firm believer that we never stop learning. I enjoy attending seminars and workshops to further improve
my knowledge and skills. I have recently passed my higher diploma, becoming one of just a few groomers in
Leicestershire to hold this certification.</p>
</div>
</div>
<div class="container">
<!-- will contain images for Sams accreditations-->
<div class="row justify-content-center">
<div class="col-sm-2 text-center">
<a href="https://www.cityandguilds.com/" target="_blank">
<img src="images/credits/C&G.jpg" alt="City and Guilds Qualified" class="" id="cityandguild">
</a>
</div>
<div class="col-sm-3 text-center">
<a href="https://www.thegroomersspotlight.com/" target="_blank">
<img src="images/credits/spotlightTrimmed.jpg" alt="Groomers Spotlight recognised" class="py-3"
id="spotlight">
</a>
</div>
</div>
</div>
<footer>
<div class="social">
<ul>
<li><a href="https://www.facebook.com/Pupsparlour"><img src="images/footer/Icons/facebook.png" target="_blank"
alt="Facebook" class="img-fluid"></a>
<li>
<li><a href="https://www.instagram.com/pupsparlour/"><img src="images/footer/Icons/instagram.png"
target="_blank" alt="Instagram" class="img-fluid"></a>
<li>
<!-- <li><a href="https://www.snapchat.com/add/pupsparlour"><img src="images/footer/Icons/snapchat.png" target="_blank" alt="Snapchat" class="img-fluid"></a><li> -->
</ul>
</div>
<h4>PUPS PARLOUR</h4>
<h5>One to One Dog Grooming</h5>
<p></p>
<p>All rights reserved, © Copyright 2018</p>
</footer>
</body>