-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.html
77 lines (75 loc) · 2.94 KB
/
service.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FashionAUra - Contact Us</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">
<img src="logo.jpg" alt="FashionAUra Logo">
</div>
</header>
<section id="contact-info">
<div class="container">
<div id="moving-text-section">
<div class="moving-text">
<p>FashionAUra - Delivering High-Quality Fashion with 100% Customer Satisfaction!</p>
</div>
</div>
<h2>Contact Us</h2>
<div class="contact-grid">
<div class="contact-item">
<div class="icon">
<img src="images/loca.jpg" alt="Location">
</div>
<h3>Our Main Office</h3>
<p>123 Fashion Street, Aurra Mall, Code-008</p>
</div>
<div class="contact-item">
<div class="icon">
<img src="images/contact.jpg" alt="Phone">
</div>
<h3>Phone Number</h3>
<p>+61-1234-567-890 (Toll Free)</p>
</div>
<div class="contact-item">
<div class="icon">
<img src="images/mail.jpg" alt="Email">
</div>
<h3>Email</h3>
<p>support@fashionaura.com</p>
</div>
<div class="contact-item">
<div class="icon">
<img src="images/fb.jpg" alt="Facebook">
</div>
<h3>Follow Us on Facebook</h3>
<p><a href="https://facebook.com/fashionaura" target="_blank">facebook.com/fashionaura</a></p>
</div>
<div class="contact-item">
<div class="icon">
<img src="images/insta.jpg" alt="Instagram">
</div>
<h3>Follow Us on Instagram</h3>
<p><a href="https://instagram.com/fashionaura" target="_blank">instagram.com/fashionaura</a></p>
</div>
</div>
<div class="form-section">
<h3>Get In Touch</h3>
<form action="#" method="POST">
<input type="email" placeholder="Email" required>
<input type="text" placeholder="Name" required>
<textarea placeholder="Message" onkeypress="if(event.key === 'Enter'){ sendMessage(); }"></textarea>
<button type="submit">Submit</button>
</form>
</div>
</div>
</section>
<footer>
<p>© 2024 FashionAUra. All rights reserved.</p>
</footer>
</body>
</html>