-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (104 loc) · 5.67 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
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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-35428620-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-35428620-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>The Local Barber Shop</title>
<link rel="shortcut icon" href="assets\img\local_barber_logo.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/css/Footer-Clean.css">
<link rel="stylesheet" href="assets/css/Navigation-Clean.css">
<link rel="stylesheet" href="assets/css/Navigation-with-Button.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<header class="text-center sticky">
<div class="parallax" style="background-image: url(http://dev.localbarber.nz/wp-content/uploads/2015/11/mens_clipper_cuts_local_barber_nelson_bw.jpg);">
<!-- for some reason I can't use the local assets and have to use an external links grrr -->
<section>
<a href="https://mckevmeister.github.io/WEB503/index.html">
<img class="img-fluid" src="assets\img\The-Local-Barbershop-logo-large_grey_mid.png" alt="The Local BarberShop Logo" style="min-width: 100px;width: 300px;height: 300px; margin: 3em">
</a>
</section>
</div>
<ul class="nav nav-tabs nav-fill text-capitalize text-center text-primary d-flex ">
<li class="nav-item"><a class="nav-link active border rounded-0" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link border rounded-0" href="About.html">About</a></li>
<li class="nav-item"><a class="nav-link border rounded-0" href="Service.html">Service</a></li>
<li class="nav-item"><a class="nav-link border rounded-0" href="Shop.html">Shop</a></li>
</ul>
</header>
<!-- <div class="parallax"></div> -->
<h1 class="text-center">A Modern Barbershop<br> for todays Gentleman of Leisure</h4>
<!-- Map linked to Physical Shop, also shows reviews from google -->
<iframe id="map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2998.576273069562!2d173.27513631510038!3d-41.27456097927472!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x6d3bed1752969345%3A0x5ec23e0ee41ef3a3!2sThe%20Local%20BarberShop%20Nelson!5e0!3m2!1sen!2sus!4v1572037592219!5m2!1sen!2sus"
width="400" height="300" frameborder="0" style="border:0;" allowfullscreen="" margin-left="20%"></iframe>
<div class="container">
<div class="row">
<div class="col-md-4 text-center"><img src="assets/img/Proraso_Beard_Oil.jpg" width="auto" height="100px">
<p>$28.50<br>A citrusy fragrance developed form notes of lime and mint. This oil is made to soften and
shine
your beard and skin.<br><br></p>
</div>
<div class="col-md-4 text-center"><img src="assets/img/Bay-Rum.jpg" width="auto" height="100px">
<p>$18.50<br>A woody, spicy fragrance that helps with a flaky or oily scalp and makes for an easy spray
on
after-shave cologne<br><br></p>
</div>
<div class="col-md-4 text-center"><img src="assets/img/dailydetox.png" width="auto" height="100px">
<p>$25.95<br>A detoxifying botanical cleanser, designed for daily refreshment and whole body cleansing,
of
hair and scalp, beard and body<br></p>
</div>
</div>
</div>
<p class="text-center">The Local Barber Shop offers a range of products to suit all budgets which includes the
shaving, styling and shampooing range.</p>
<!-- Same footer across website -->
<div class="footer-clean">
<footer>
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-4 col-md-3 item">
<h3>Opening Hours</h3>
<ul>
<p>Monday - Friday 8:30 - 5:30<br>
Saturday 9:00 - 2:00</p>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3>The Local Barber Shop</h3>
<p>36 Gloucester Street<br>
Nelson<br>
(03) 539 4050</p>
</div>
<div class="col-lg-3 item social">
<img src="assets/img/local_barber_logo.png" width="auto" height="100px">
<a href="https://www.facebook.com/localbarbershopnelson/">
<i class="icon ion-social-facebook"></i>
</a>
<a href="https://www.instagram.com/thelocalbarbershopnelson/">
<i class="icon ion-social-instagram"></i>
</a>
<p class="copyright">TheLocalBarberShop © 2019</p>
</div>
</div>
</div>
</footer>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>