-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (112 loc) · 3.33 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
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jeneration Ink</title>
<link rel="stylesheet" href="/assets/css/styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<header>
<div class="logo">
<a href="/index.html">
<img
src="/assets/images/logo.png"
alt="JenerationInk logo"
srcset=""
width="300px"
height="100px"
/>
</a>
</div>
<nav>
<ul class="nav-links">
<li><a href="./index.html">Home</a></li>
<li><a href="#procedures-section">Procedures & Prices</a></li>
<li><a href="#treatment-section">Treatment Information</a></li>
<li><a href="aboutUs-section">About Us</a></li>
</ul>
</nav>
<div class="socials">
<a href="https://www.facebook.com/">
<img src="./assets/images/facebook-square-brands.svg" alt="" />
</a>
<a href="https://www.instagram.com/"
><img src="./assets/images/instagram-brands.svg" alt=""
/></a>
</div>
</header>
<section id="intro-section">
<div class="intro-text">
<h1>"Restore Your Confidence"</h1>
<p>
The Best Cosmetic Tattoo & Scalp Micropigmentation Specialists in
Cairns
</p>
<a href="/index.html" class="primary-btn">Book Now</a>
</div>
<div class="face-img">
<img src="/assets/images/faceImg.png" alt="" srcset="" width="500px" />
</div>
</section>
<section id="procedures-section">
<h2 class="procedures-section_header">Procedures We Offer</h2>
<div class="procedures-section_body">
<img
src="/assets/images/procedures-image.png"
alt=""
srcset=""
class="profileImg"
width="300px"
/>
<div class="procedures-section_text">
<ul>
<li class="gridbox">
<h3>Brows</h3>
<ul>
<li>Cosmetic Tattooed Brows - $550</li>
<li>Previous Artist Brows - $550</li>
<li>24 Month Colour Boost Brow - $400</li>
</ul>
</li>
<li class="gridbox">
<h3>Eyeliner</h3>
<ul>
<li>Classic Eyeliner - $350</li>
<li>Top & Lower Liner - $500</li>
</ul>
</li>
<li class="gridbox">
<h3>Lips</h3>
<ul>
<li>Full Lip Blush - $550</li>
</ul>
</li>
</ul>
</div>
</div>
</section>
<footer>
<div class="getInTouch">
<h4 class="no-margin">Get in touch</h4>
<p class="no-margin">
0433 200 165<br />
</p>
</div>
<div class="address">
<h4 class="no-margin">Address</h4>
<p class="no-margin">
Cairns <br />
Inside AVOCA COSMETOLOGY Shop 115A, <br />
Smithfield Shopping Centre
</p>
</div>
</footer>
</body>
</html>