forked from Gyanthakur/Dev_Profiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexadvance,html
More file actions
312 lines (276 loc) · 10.4 KB
/
indexadvance,html
File metadata and controls
312 lines (276 loc) · 10.4 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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevProfiles - Showcase Your Skills</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
padding: 40px 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
header {
text-align: center;
color: white;
margin-bottom: 50px;
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
header p {
font-size: 1.1em;
opacity: 0.9;
}
.profiles-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 50px;
}
.profile {
background: white;
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
overflow: hidden;
}
.profile:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.lines {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}
.pfp {
text-align: center;
margin-bottom: 20px;
}
.pfp img {
width: 120px;
height: 120px;
border-radius: 50%;
border: 4px solid #667eea;
object-fit: cover;
}
.name {
text-align: center;
font-size: 1.5em;
color: #333;
margin-bottom: 15px;
}
.skills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 20px;
justify-content: center;
}
.skill {
background: #f0f0f0;
color: #667eea;
padding: 5px 12px;
border-radius: 20px;
font-size: 0.85em;
font-weight: 500;
}
.social {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 20px;
}
.social a {
color: #667eea;
font-size: 1.5em;
transition: color 0.3s, transform 0.3s;
text-decoration: none;
}
.social a:hover {
color: #764ba2;
transform: scale(1.2);
}
.add-profile-section {
background: white;
border-radius: 15px;
padding: 40px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
margin-top: 50px;
}
.add-profile-section h2 {
color: #333;
margin-bottom: 20px;
}
.add-profile-section p {
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}
.contribute-btn {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 12px 30px;
border: none;
border-radius: 25px;
cursor: pointer;
font-size: 1em;
transition: transform 0.3s;
}
.contribute-btn:hover {
transform: scale(1.05);
}
.code-block {
background: #f5f5f5;
border-left: 4px solid #667eea;
padding: 15px;
margin: 15px 0;
border-radius: 5px;
overflow-x: auto;
text-align: left;
}
.code-block code {
color: #333;
font-family: 'Courier New', monospace;
font-size: 0.9em;
}
@media (max-width: 768px) {
header h1 {
font-size: 1.8em;
}
.profiles-grid {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>👩💻 DevProfiles 👨💻</h1>
<p>Showcase your skills and connect with the developer community</p>
</header>
<div class="profiles-grid">
<!-- Profile 1 -->
<div class="profile">
<div class="lines"></div>
<div class="pfp">
<img src="https://avatars.githubusercontent.com/u/98226958?v=4" alt="User Image">
</div>
<h3 class="name">Gyan Thakur</h3>
<div class="skills">
<span class="skill">JavaScript</span>
<span class="skill">React</span>
<span class="skill">Node.js</span>
<span class="skill">MongoDB</span>
<span class="skill">Web Dev</span>
</div>
<div class="social">
<a href="https://github.com/Gyanthakur" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://twitter.com/Gyanthakur" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://linkedin.com/in/gyanthakur" target="_blank"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</div>
<!-- Profile 2 -->
<div class="profile">
<div class="lines"></div>
<div class="pfp">
<img src="https://avatars.githubusercontent.com/u/1?v=4" alt="User Image">
</div>
<h3 class="name">Sarah Johnson</h3>
<div class="skills">
<span class="skill">Python</span>
<span class="skill">Django</span>
<span class="skill">PostgreSQL</span>
<span class="skill">Docker</span>
<span class="skill">AI/ML</span>
</div>
<div class="social">
<a href="https://github.com" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://twitter.com" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://linkedin.com" target="_blank"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</div>
<!-- Profile 3 -->
<div class="profile">
<div class="lines"></div>
<div class="pfp">
<img src="https://avatars.githubusercontent.com/u/2?v=4" alt="User Image">
</div>
<h3 class="name">Alex Chen</h3>
<div class="skills">
<span class="skill">TypeScript</span>
<span class="skill">Vue.js</span>
<span class="skill">GraphQL</span>
<span class="skill">AWS</span>
<span class="skill">DevOps</span>
</div>
<div class="social">
<a href="https://github.com" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://twitter.com" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://linkedin.com" target="_blank"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</div>
<!-- ADD YOUR PROFILE BELOW THIS COMMENT - DO NOT MODIFY ABOVE -->
<!--Profiles-->
<!--Profiles-->
<!-- ADD YOUR PROFILE ABOVE THIS COMMENT - DO NOT MODIFY BELOW -->
</div>
<!-- Contribution Section -->
<div class="add-profile-section">
<h2>🚀 Want to Add Your Profile?</h2>
<p>Showcase your skills and projects to the developer community. Follow the steps below to contribute your profile.</p>
<div class="code-block">
<code>
<div class="profile">
<div class="lines"></div>
<div class="pfp"><img src="YOUR-IMAGE-URL" alt="User Image"></div>
<h3 class="name">Your Name</h3>
<div class="skills">
<span class="skill">Skill 1</span>
<span class="skill">Skill 2</span>
<span class="skill">Skill 3</span>
</div>
<div class="social">
<a href="YOUR-GITHUB-URL" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="YOUR-TWITTER-URL" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="YOUR-LINKEDIN-URL" target="_blank"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</div>
</code>
</div>
<h3 style="margin-top: 30px; color: #333;">📝 Steps to Contribute:</h3>
<p style="margin-top: 15px; text-align: left; display: inline-block;">
1. Fork the repository<br>
2. Clone your fork: <code style="background: #f0f0f0; padding: 2px 6px;">git clone https://github.com/YOUR-USERNAME/Dev_Profiles.git</code><br>
3. Add your profile code between the <!--Profiles--> comments<br>
4. Replace placeholders with your info<br>
5. Commit: <code style="background: #f0f0f0; padding: 2px 6px;">git commit -m "feat: add my profile"</code><br>
6. Push and create a Pull Request<br>
</p>
<button class="contribute-btn" onclick="alert('Visit GitHub to contribute: https://github.com/Gyanthakur/Dev_Profiles')">
⭐ Contribute Now
</button>
</div>
</div>
</body>
</html>