-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
59 lines (54 loc) · 2.32 KB
/
Copy pathabout.html
File metadata and controls
59 lines (54 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>About - Karunya Makeover</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Montserrat&display=swap" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
</head>
<body>
<!-- Navbar -->
<header>
<nav class="navbar">
<div class="logo">
<img src="makeoverlogo.jpg" alt="Karunya Makeover Logo" />
<h1>Karunya Makeover</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="https://www.instagram.com/karunya_makeover/" target="_blank" rel="noopener noreferrer"><i class="fab fa-instagram"></i></a><li>
</ul>
</nav>
</header>
<!-- About Section -->
<section class="about">
<h2>About Karunya</h2>
<div class="about-content">
<p>A passionate and experienced makeover artist dedicated to enhancing your natural beauty with a touch of elegance. Specializing in bridal, event, and editorial makeup, she brings creativity and precision to every face she works on.</p>
<p>With an eye for detail and a heart for my craft, I've transformed clients, helping them look and feel their best on the most important days of their lives. Whether you're preparing for a wedding, party, or photoshoot — you're in expert hands.</p>
</div>
</section>
<!-- Call to Action -->
<section class="cta">
<h3>Want to know more about services?</h3>
<a href="services.html" class="btn">View Services</a>
</section>
<div class="floating-buttons">
<a href="https://wa.me/9342738611" class="whatsapp-float" target="_blank" rel="noopener noreferrer">
<i class="fab fa-whatsapp"></i>
</a>
<a href="tel:+9342738611" class="call-float">
<i class="fas fa-phone-alt"></i>
</a>
</div>
<!-- Footer -->
<footer>
<p>© 2025 Karunya Makeover. All rights reserved.</p>
</footer>
</body>
</html>