-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
150 lines (132 loc) · 5.32 KB
/
resume.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sanchari Dey | Resume</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: #111;
color: white;
}
header {
background-color: #d99c0a;
padding: 30px 0;
}
header h1 {
font-size: 2.5rem;
}
.section-title {
color: #d99c0a;
border-bottom: 2px solid #d99c0a;
display: inline-block;
margin-bottom: 20px;
}
.skill-item {
background-color: #2c2c2c;
padding: 10px 15px;
border-radius: 8px;
margin: 5px 0;
text-align: center;
}
footer {
background-color: #d99c0a;
color: #111;
padding: 20px;
text-align: center;
}
.btn-link {
background-color: #d99c0a;
color: #111;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s;
}
.btn-link:hover {
background-color: #b38206;
color: white;
}
@media (max-width: 576px) {
.skill-item {
margin-bottom: 10px;
}
}
</style>
</head>
<body>
<!-- Header -->
<header class="text-center">
<div class="container">
<h1>Sanchari Dey</h1>
<p>Web Developer | Cybersecurity & Blockchain Enthusiast</p>
</div>
</header>
<!-- Profile Section -->
<section class="container my-5">
<h2 class="section-title">Profile</h2>
<p>
Computer Science student skilled in HTML, CSS, Bootstrap, Python, and C with intermediate expertise in JavaScript and Figma. A collaborative team player, cybersecurity and blockchain enthusiast, committed to innovation, responsive development, and continuous learning.
</p>
</section>
<!-- Contact Section -->
<section class="container my-5">
<h2 class="section-title">Contact</h2>
<p><strong>Phone:</strong> 7381-74102</p>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Location:</strong> Kolkata</p>
</section>
<!-- Experience Section -->
<section class="container my-5">
<h2 class="section-title">Experience</h2>
<div class="mb-4">
<h3>AlumNexus (2024)</h3>
<ul>
<li>Designed and developed the front-end interface for an alumni association platform using HTML, CSS, JavaScript, and Bootstrap, ensuring a responsive and user-friendly experience.</li>
<li>Contributed innovative ideas for features like event management, alumni directory, and interactive forums to enhance user engagement.</li>
<li>Played a key role in brainstorming and presenting solutions to improve platform usability and scalability.</li>
</ul>
</div>
<div>
<h3>Tick Tock (2024)</h3>
<ul>
<li>Led the front-end development using HTML, CSS, JavaScript, and Bootstrap, creating an intuitive and visually appealing interface tailored for university students.</li>
<li>Proposed and implemented innovative features like a fitness tracker, goal-setting module, and timetable uploader to enhance productivity and life balance.</li>
<li>Actively contributed to brainstorming sessions and user research to deliver a comprehensive, student-focused solution.</li>
</ul>
</div>
</section>
<!-- Education Section -->
<section class="container my-5">
<h2 class="section-title">Education</h2>
<p><strong>Higher Secondary School:</strong> S.B.D. International School (2021-2023)</p>
<p><strong>Bachelor of Technology:</strong> Heritage Institute of Technology (2023-2027)</p>
</section>
<!-- Skills Section -->
<section class="container my-5">
<h2 class="section-title">Skills</h2>
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="skill-item">Web Design</div>
<div class="skill-item">Design Thinking</div>
<div class="skill-item">Python and C</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="skill-item">Front-End Coding</div>
<div class="skill-item">Problem-Solving</div>
<div class="skill-item">Cybersecurity Enthusiast</div>
</div>
</div>
<div class="text-center mt-4">
<a href="index.html" class="btn-link">Back to Portfolio</a>
</div>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Sanchari Dey | Built with 💻 and ❤️</p>
</footer>
</body>
</html>