-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
193 lines (166 loc) · 4.72 KB
/
contact.html
File metadata and controls
193 lines (166 loc) · 4.72 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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About SnapCode</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
.box {
font-family: 'Arial', sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
width: 90%;
height: 100vh;
max-width: 800px;
padding: 20px;
background-color: #1e1e1e;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
padding-top: 7rem;
}
header h1 {
text-align: center;
margin-bottom: 20px;
}
.about-section h2 {
margin-top: 20px;
color: #66b3ff;
}
.about-section p,
.about-section ul {
line-height: 1.6;
}
ul {
padding-left: 20px;
}
ul li {
margin-bottom: 10px;
}
a {
color: #66b3ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
margin-top: 20px;
text-align: center;
font-size: 14px;
color: #777;
}
/* Same body and container styles as the About section */
.contact-section {
margin-top: 20px;
}
.contact-section h2 {
color: #66b3ff;
}
.social-icons {
margin: 20px 0;
display: flex;
gap: 20px;
}
.social-icons a {
color: #66b3ff;
font-size: 1.5rem;
transition: color 0.3s ease;
}
.social-icons a:hover {
color: #559bd1;
}
#email {
font-weight: bold;
color: #66b3ff;
}
button {
padding: 5px 5px;
background-color: #66b3ff;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
display: flex;
align-items: center;
gap: 5px;
}
button:hover {
background-color: #559bd1;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/index.html">SnapCode</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ol class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="">About SnapCode</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="/contact.html">Get in Touch</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-current="page" href="/privacy-policy.html">privacy policy</a>
</li>
</ol>
</div>
</div>
</nav>
<div class="box">
<div class="container">
<header>
<h1>Contact SnapCode</h1>
</header>
<section class="about-section">
<h2>Get in Touch</h2>
<p>
You can connect with us on our social media platforms or reach out via email.
</p>
<div class="social-icons">
<a href="https://twitter.com/ManjiStuduo" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://m.facebook.com/profile.php?id=61559019777825" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
</a>
<a href="https://www.instagram.com/studio_manji" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="https://t.me/MANJI_HELPER" target="_blank">
<i class="fab fa-telegram"></i>
</a>
</div>
<p>Gmail: <span id="email">animemanji80@gmail.com</span>
</p>
</section>
<footer>
<p>© 2025 SnapCode. All rights reserved.</p>
</footer>
</div>
</div>
<script>
function copyEmail() {
const emailText = document.getElementById('email').innerText;
navigator.clipboard.writeText(emailText).then(() => {
alert('Email copied to clipboard!');
});
}
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>