-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutme.html
187 lines (164 loc) · 5.69 KB
/
aboutme.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Rajarshi Das</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&family=Roboto:wght@300;400&display=swap');
body {
font-family: 'Raleway', sans-serif;
background: linear-gradient(135deg, #74ebd5 0%, #acb6e5 100%);
color: #444;
line-height: 1.6;
transition: background 0.5s ease-in-out, color 0.5s ease-in-out;
}
.container {
max-width: 900px;
margin: 50px auto;
padding: 20px;
}
h1 {
font-family: 'Roboto', sans-serif;
font-size: 2.5rem;
text-align: center;
margin-bottom: 40px;
color: #1c3b57;
transition: color 0.3s ease-in-out;
}
h1:hover {
color: #102a42;
}
.card {
margin-bottom: 20px;
border: none;
border-radius: 12px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
background: #fff;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}
.card-header {
font-size: 1.8rem;
background-color: #1c3b57;
color: #f8f9fa;
border-radius: 12px 12px 0 0;
padding: 15px;
transition: background-color 0.3s ease;
}
.card-header:hover {
background-color: #102a42;
}
.card-body {
padding: 20px;
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
border-radius: 0 0 12px 12px;
}
ul {
list-style-type: none;
padding: 0;
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 1rem;
}
li {
margin-bottom: 10px;
padding-left: 10px;
}
li::before {
content: "•";
color: #007bff;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
transition: color 0.3s ease;
}
li:hover::before {
color: #0056b3;
}
.resume-link {
display: block;
text-align: center;
margin-top: 40px;
}
.resume-link p {
margin: 0;
font-family: 'Raleway', sans-serif;
font-size: 1.2rem;
color: #444;
}
.resume-link a {
text-decoration: none;
font-weight: 600;
color: #fff;
font-size: 1.2rem;
padding: 10px 20px;
background-color: #007bff;
border-radius: 8px;
transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
display: inline-block;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
margin-top: 10px;
}
.resume-link a:hover {
background-color: #0056b3;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
transform: translateY(-5px);
text-decoration: none;
}
.resume-link a:focus {
outline: none;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}
</style>
</head>
<body>
<div class="container">
<h1><b>About Me</b></h1>
<div class="card">
<div class="card-header">Educational Background</div>
<div class="card-body">
<ul>
<li><strong>Secondary Education:</strong> Aditya Academy Sr. Secondary with a percentage of 90% marks</li>
<li><strong>Higher-Secondary Education:</strong> Aditya Academy Sr. Secondary with a percentage of 81% marks</li>
<li><strong>Current:</strong> 2nd Year Front-End Developer at RCC Institute of Information Technology</li>
<li><strong>Course:</strong> Computer Science and Engineering</li>
<li><strong>Skills:</strong> HTML, CSS, JavaScript, Bootstrap, Responsive Web Design, Python, C, C++, Figma</li>
</ul>
</div>
</div>
<div class="card">
<div class="card-header">Hobbies</div>
<div class="card-body">
<ul>
<li>Coding and building web projects</li>
<li>Graphic Design and UI/UX Design</li>
<li>Gaming and playing Football</li>
<li>Reading tech blogs and watching coding tutorials</li>
</ul>
</div>
</div>
<div class="card">
<div class="card-header">Strengths</div>
<div class="card-body">
<ul>
<li>Creative problem-solving and critical thinking</li>
<li>Strong understanding of web development fundamentals</li>
<li>Team player</li>
<li>Passion for learning and adapting to new technologies</li>
</ul>
</div>
</div>
<div class="resume-link">
<p>Check out my full</p>
<p><a href="Resume.pdf">Resume</a></p>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>