-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactUs.html
109 lines (95 loc) · 3.31 KB
/
contactUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - FitLife Gym</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<style>
:root {
--primary-color: #3498db;
--secondary-color: #2ecc71;
--accent-color: #e74c3c;
--text-color: #333;
--bg-color: #f8f9fa;
}
body {
font-family: 'Roboto', sans-serif;
/* Background Gradient */
background: linear-gradient(135deg, #3498db, #2ecc71);
color: var(--text-color);
}
.contact-section {
padding: 100px 0;
background-color: var(--primary-color);
color: #fff;
animation: fadeIn 1s ease-in-out;
}
.contact-title {
font-size: 3rem;
margin-bottom: 30px;
text-align: center;
animation: slideInLeft 1s ease;
}
.contact-info {
font-size: 1.2rem;
margin-bottom: 20px;
}
.contact-icons i {
font-size: 2.5rem;
margin: 20px 0;
color: var(--secondary-color);
transition: transform 0.3s ease;
}
.contact-icons i:hover {
transform: scale(1.3);
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes slideInLeft {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
</style>
</head>
<body>
<div class="contact-section text-center">
<h1 class="contact-title">Contact Flex forge Gym</h1>
<p class="contact-info">We’d love to hear from you! Whether you have a question about our services, need assistance, or just want to share feedback, our team is here to help.</p>
<div class="row mt-5">
<div class="col-md-4">
<i class="fas fa-phone-alt contact-icons"></i>
<h3>Call Us</h3>
<p>1234567890</p>
</div>
<div class="col-md-4">
<i class="fas fa-envelope contact-icons"></i>
<h3>Email Us</h3>
<p>Flex_forge061707@gmail.com</p>
</div>
<div class="col-md-4">
<i class="fas fa-map-marker-alt contact-icons"></i>
<h3>Visit Us</h3>
<p>170706 srinagar Street, pragathi City, FL 32100</p>
</div>
</div>
<!-- Added Social Media Credentials -->
<h2 class="mb-4 mt-5">Connect with Us on Social Media</h2>
<h2 class="mb-4">Instagram ID: Flex_forge_gyms.170607</h2>
<h2 class="mb-4">WhatsApp group link: <u>Flex-forge-gym</u></h2>
<p>Follow us on our social platforms for updates and inspiration.</p>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>