Skip to content

Commit 0403cc4

Browse files
authored
Merge pull request Roshanjossey#270 from Sergitodelavega/add-sergitodelavega
Add My Developer Card - Sergitodelavega
2 parents a606f2a + 3052bd0 commit 0403cc4

File tree

1 file changed

+117
-0
lines changed

1 file changed

+117
-0
lines changed

contributors/Sergitodelavega.html

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Sergitodelavega - Developer Card</title>
7+
<style>
8+
body {
9+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
10+
margin: 0;
11+
padding: 0;
12+
background-color: #f9fafb;
13+
color: #1f2937;
14+
display: flex;
15+
justify-content: center;
16+
align-items: center;
17+
min-height: 100vh;
18+
}
19+
20+
article {
21+
max-width: 600px;
22+
background-color: #ffffff;
23+
border-radius: 1rem;
24+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
25+
padding: 2rem;
26+
}
27+
28+
h3 {
29+
font-size: 1.8rem;
30+
margin-bottom: 0.5rem;
31+
color: #111827;
32+
}
33+
34+
p {
35+
font-size: 1rem;
36+
line-height: 1.6;
37+
color: #374151;
38+
}
39+
40+
h4 {
41+
margin-top: 2rem;
42+
font-size: 1.2rem;
43+
color: #111827;
44+
border-bottom: 2px solid #e5e7eb;
45+
padding-bottom: 0.25rem;
46+
}
47+
48+
.container {
49+
display: flex;
50+
flex-wrap: wrap;
51+
gap: 0.75rem;
52+
margin-top: 1rem;
53+
}
54+
55+
.badge {
56+
padding: 0.4rem 0.75rem;
57+
border-radius: 0.375rem;
58+
font-weight: 600;
59+
font-size: 0.9rem;
60+
transition: transform 0.2s ease;
61+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
62+
cursor: default;
63+
}
64+
65+
.badge:hover {
66+
transform: scale(1.05);
67+
}
68+
69+
.icon {
70+
width: 2.5rem;
71+
height: 2.5rem;
72+
object-fit: contain;
73+
border-radius: 0.375rem;
74+
background-color: #f3f4f6;
75+
padding: 0.25rem;
76+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
77+
transition: transform 0.2s ease;
78+
}
79+
80+
.icon:hover {
81+
transform: scale(1.1);
82+
}
83+
</style>
84+
</head>
85+
<body>
86+
<article>
87+
<h3>Sergitodelavega</h3>
88+
<p>
89+
Passionate and dynamic Web Developer. Skilled in JavaScript, Laravel, PHP, MySQL. I enjoy working on team-driven projects and am always open to collaborations and knowledge sharing.
90+
</p>
91+
92+
<h4>Programming Languages I Use</h4>
93+
<section class="container">
94+
<div class="badge" style="background-color: #e34c26; color: white">HTML</div>
95+
<div class="badge" style="background-color: #264de4; color: white">CSS</div>
96+
<div class="badge" style="background-color: #f7df1e; color: black">JavaScript</div>
97+
<div class="badge" style="background-color: #38bdf8; color: white">TailwindCSS</div>
98+
<div class="badge" style="background-color: #fb503b; color: white">Laravel</div>
99+
<div class="badge" style="background-color: #3776ab; color: white">Python</div>
100+
</section>
101+
102+
<h4>Tools I Use</h4>
103+
<section class="container">
104+
<img
105+
class="icon"
106+
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/bash/bash-original.svg"
107+
alt="Bash logo"
108+
/>
109+
<img
110+
class="icon"
111+
src="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/icons/linux/linux-original.svg"
112+
alt="Linux logo"
113+
/>
114+
</section>
115+
</article>
116+
</body>
117+
</html>

0 commit comments

Comments
 (0)