-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
113 lines (106 loc) · 3.98 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Royal Signature -> Contact </title>
<meta name="description" content="Discover your signature scent with Royal Signature's exclusive collection of luxury perfumes.">
<link rel="stylesheet" href="css/contact.css">
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap" rel="stylesheet"> <!-- for Google Font -->
<script src="https://unpkg.com/lucide@latest"></script> <!-- for icons -->
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-content">
<div class="nav-logo">
<img class="logoimg" src="img/logo.png" alt="logo">
<span>Royal Signature</span>
</div>
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="brands.html">Brands</a></li>
<li><a href="feedback.html">feedback</a></li>
<li><a href="contact.html">Contact</a></li>
<li> <a href="cart.html" ><img class="bag" src="icons/image-removebg-preview (3).png" ></a><li>
</ul>
</div>
</nav>
<!-- -->
<section id="contact" class="contact-section">
<div class="contact-container">
<h2 class="contact-title">Get in Touch</h2>
<p class="contact-subtitle">We’d love to hear from you! Feel free to reach out.</p>
<div class="contact-content">
<!-- Contact Form -->
<form class="contact-form">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<textarea placeholder="Your Message" rows="4" required></textarea>
<button type="submit">Send Message</button>
</form>
<!-- Contact Details -->
<div class="contact-info">
<p><strong>Email:</strong> contact@royalsignature.com</p>
<p><strong>Phone:</strong> +91 98765 43210</p>
<p><strong>Address:</strong> 123 Luxury Lane, Mumbai, India</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-brand">
<div class="footer-logo">
<i data-lucide="crown"></i>
<span>Royal Signature</span>
</div>
<p>Crafting luxury fragrances for the distinguished</p>
<div class="social-links">
<a href="#"><i data-lucide="instagram"></i></a>
<a href="#"><i data-lucide="facebook"></i></a>
<a href="#"><i data-lucide="twitter"></i></a>
</div>
</div>
<div class="footer-links">
<div class="footer-section">
<h3>Shop</h3>
<ul>
<li><a href="#">All Perfumes</a></li>
<li><a href="#">New Arrivals</a></li>
<li><a href="#">Best Sellers</a></li>
<li><a href="#">Gift Sets</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Company</h3>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Stores</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Support</h3>
<ul>
<li><a href="#">FAQs</a></li>
<li><a href="#">Shipping</a></li>
<li><a href="#">Returns</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Royal Signature. All rights reserved.</p>
</div>
</footer>
<script>
// Initialize Lucide icons
lucide.createIcons();
</script>
</body>
</html>