-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (67 loc) · 2.28 KB
/
index.html
File metadata and controls
75 lines (67 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Studio Three.One.Zero | Hair Salon</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<link rel="shortcut icon" type="image/x-icon" href="favicon.png">
<link rel="apple-touch-icon" href="favicon.png">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
<!-- Main CSS -->
<link rel="stylesheet" href="css/styles.min.css" />
</head>
<body>
<header>
<img src="fav.png" alt="Studio 310 Logo" />
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<h1>Studio Three.One.Zero</h1>
<p>Where beauty meets sophistication</p>
<a href="#services" class="btn">View Our Services</a>
</section>
<section id="services">
<h2>Our Services</h2>
<div class="services-grid">
<div class="service-card">
<h3>Ladies Cut & Style</h3>
<p>Expert cuts and styling for every occasion.</p>
<p class="price">From R350</p>
</div>
<div class="service-card">
<h3>Color & Highlights</h3>
<p>Vibrant tones and soft balayage artistry.</p>
<p class="price">From R650</p>
</div>
<div class="service-card">
<h3>Keratin Smoothing</h3>
<p>Frizz-free, silky hair that lasts up to 3 months.</p>
<p class="price">From R1200</p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p class="contact-info">
📍 100 Elizabeth Road, Impala Park, Boksburg<br />
✉️ <a href="mailto:jen@studio310.co.za">jen@studio310.co.za</a><br />
📞 <a href="tel:+27662333607">+27 (0)66 233 3607</a>
</p>
</section>
<footer>
<p>© 2025 Studio Three.One.Zero | Designed with 💕 in Boksburg</p>
</footer>
<!-- Polyfill for older browsers (load first) -->
<script src="vendor/intersection-observer-polyfill.js"></script>
<!-- Main JavaScript -->
<script src="js/main.min.js"></script>
</body>
</html>