-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
251 lines (217 loc) · 5.92 KB
/
Copy pathcontact.html
File metadata and controls
251 lines (217 loc) · 5.92 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Connect Blog</title>
<link rel="icon" type="image/x-icon" href="images/c.ico"/>
<!-- Bootstrap Icons CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css">
<style>
body {
margin: 0;
font-family: "Times New Roman", serif;
background: url('images/xp-bg.jpg') no-repeat center center fixed;
background-size: cover;
min-height: 100vh;
}
.contact-container {
width: 85%;
max-width: 700px;
margin: 40px auto;
background: rgba(235, 238, 255, 0.97);
padding: 35px;
border: 1px solid rgba(170, 170, 170, 0.4);
border-radius: 12px;
display: flex;
flex-direction: column;
gap: 25px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
h1 {
font-size: 38px;
color: #2c4fa3;
margin-bottom: 18px;
padding-bottom: 12px;
border-bottom: 3px solid #2c4fa3;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 14px;
font-size: 16px;
}
/* XP-style buttons for icons + text */
.contact-item {
display: flex;
align-items: center;
gap: 15px;
text-decoration: none;
color: #2c4fa3;
font-weight: bold;
padding: 14px 18px;
border: 2px solid #b0b8d0;
border-top-color: #fff;
border-left-color: #fff;
border-bottom-color: #888;
border-right-color: #888;
border-radius: 6px;
background: linear-gradient(135deg, #e8ecff 0%, #dfe3f4 100%);
box-shadow: inset 1px 1px 0 #fff, inset -1px -1px 0 #888;
transition: all 0.3s ease;
}
.contact-item:hover {
background: linear-gradient(135deg, #2c4fa3 0%, #1d357f 100%);
color: white;
border-color: #2c4fa3;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(44, 79, 163, 0.3);
}
.contact-item:active {
transform: translateY(0);
box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.contact-item i {
font-size: 22px;
width: 28px;
text-align: center;
flex-shrink: 0;
}
.contact-buttons {
margin-top: 25px;
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.contact-buttons a {
text-decoration: none;
padding: 12px 20px;
background: linear-gradient(135deg, #2c4fa3 0%, #1d357f 100%);
color: white;
border-radius: 8px;
font-weight: bold;
font-size: 15px;
transition: all 0.3s ease;
box-shadow: 0 3px 8px rgba(44, 79, 163, 0.25);
}
.contact-buttons a:hover {
background: linear-gradient(135deg, #1d357f 0%, #0f1f4f 100%);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(44, 79, 163, 0.4);
}
/* ===============================
MOBILE RESPONSIVE
=============================== */
@media (max-width: 768px) {
.contact-container {
width: 95%;
margin: 25px auto;
padding: 25px;
}
h1 {
font-size: 30px;
margin-bottom: 15px;
}
.contact-info {
gap: 12px;
}
.contact-item {
padding: 13px 16px;
font-size: 15px;
}
.contact-item i {
font-size: 20px;
width: 26px;
}
.contact-buttons {
flex-direction: column;
gap: 12px;
}
.contact-buttons a {
text-align: center;
padding: 13px 18px;
}
}
@media (max-width: 480px) {
.contact-container {
width: 98%;
margin: 20px auto;
padding: 20px;
}
h1 {
font-size: 26px;
}
.contact-item {
padding: 12px 14px;
font-size: 14px;
gap: 12px;
}
.contact-item i {
font-size: 18px;
width: 24px;
}
.contact-buttons a {
padding: 12px 16px;
font-size: 14px;
}
}
</style>
</head>
<body>
<header class="top-bar">
<div class="left">
<span class="site-icon">C</span>
</div>
<div class="right">
<div class="dropdown">
<button class="dropbtn">More ▾</button>
<div class="dropdown-content">
<a href="about.html">About</a>
<a href="profile.html">Profile</a>
</div>
</div>
</div>
</header>
<div class="contact-container">
<h1>Contact Me</h1>
<div class="contact-info">
<!-- Email -->
<a href="mailto:ayushrauniyar.a@gmail.com" class="contact-item">
<i class="bi bi-envelope-fill"></i>
<span>Gmail Address</span>
</a>
<!-- LinkedIn -->
<a href="https://www.linkedin.com/in/ayush-rauniyar-a0888b37a/" target="_blank" rel="noopener noreferrer" class="contact-item">
<i class="bi bi-linkedin"></i>
<span>LinkedIn</span>
</a>
<!-- Facebook -->
<a href="https://www.facebook.com/zrox99" target="_blank" rel="noopener noreferrer" class="contact-item">
<i class="bi bi-facebook"></i>
<span>Facebook</span>
</a>
<!-- Reddit -->
<a href="https://www.reddit.com/user/zrox99/" target="_blank" rel="noopener noreferrer" class="contact-item">
<i class="bi bi-reddit"></i>
<span>Reddit</span>
</a>
<!-- GitHub -->
<a href="https://github.com/zroxcoder" target="_blank" rel="noopener noreferrer" class="contact-item">
<i class="bi bi-github"></i>
<span>GitHub</span>
</a>
<!-- Instagram -->
<a href="https://www.instagram.com/aayush.rauniyar1/" target="_blank" rel="noopener noreferrer" class="contact-item">
<i class="bi bi-instagram"></i>
<span>Instagram</span>
</a>
</div>
<div class="contact-buttons">
<a href="index.html">← Back to Blog</a>
<a href="profile.html">View Profile</a>
<a href="about.html">About</a>
</div>
</div>
</body>
</html>