-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (147 loc) · 5.51 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="profile-info">
<h1>Ritesh Roushan</h1>
<p>Aspiring Software Engineer | Python & C++ Developer</p>
</div>
<img src="profile.jpg" alt="profile pic" class="profile-img">
</div>
</div>
</header>
<section id="summary">
<div class="container">
<h2>Summary</h2>
<p>Aspiring Software Engineer with expertise in Python and C++, and a B.Tech in Biotechnology. Developed projects like the KIBA Voice Assistant and excelled in competitions like FLIPKART GRID 5.0. Strong problem-solver with over 100 solved LeetCode questions. Proficient in data structures, algorithms, and various development tools. Certified in data analytics, AI, and bioinformatics.</p>
</div>
</section>
<section id="contact-resume">
<div class="container">
<div class="contact-resume">
<div class="contact">
<h2>Contact</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Linkedin : <a href="https://www.linkedin.com/in/" target="_blank">Linkedin</a></p>
</div>
<div class="resume">
<h2>Resume</h2>
<p><a href="resume.pdf" download>Download Resume</a></p>
</div>
</div>
</div>
</section>
<section id="skills">
<div class="container">
<h2>Skills</h2>
<table>
<tr>
<th>Category</th>
<th>Details</th>
</tr>
<tr>
<td>Programming Languages</td>
<td>Python, C++</td>
</tr>
<tr>
<td>Developer Tools</td>
<td>VS Code, Jupyter Notebook, DEV C</td>
</tr>
<tr>
<td>Soft Skills</td>
<td>Collaborating, Continuous Learning, Problem-Solving, Troubleshooting, Time Management</td>
</tr>
<tr>
<td>Other</td>
<td>Data Structures & Algorithms</td>
</tr>
</table>
</div>
</section>
<section id="education">
<div class="container">
<h2>Education</h2>
<p><strong>B.Tech in Biotechnology</strong> (2022 - 2026)<br>
Noida Institute of Engineering and Technology (Greater Noida)<br>
CGPA: 8.38/10</p>
<p><strong>Class 12th – CBSE</strong> (2020 - 2022)<br>
Rajkamal Saraswati Vidhya Mandir (Jharkhand)<br>
Percentage: 83.8%</p>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<table>
<tr>
<th>Project Name</th>
<th>Description</th>
</tr>
<tr>
<td>KIBA Voice Assistant | Python</td>
<td>Utilized pyttsx3 for text-to-speech conversion, implemented speech recognition, and integrated multiple modules for diverse functionalities.</td>
</tr>
</table>
</div>
</section>
<section id="achievements">
<div class="container">
<h2>Achievements</h2>
<table>
<tr>
<th>Achievement</th>
<th>Description</th>
</tr>
<tr>
<td>Solved 100+ LEETCODE Questions</td>
<td>Consistent track record of effectively tackling algorithmic challenges, showcasing adaptability and analytical thinking in problem-solving approaches.</td>
</tr>
<tr>
<td>Competed in FLIPKART GRID 5.0</td>
<td>Solving real-world tech challenges with innovative solutions.</td>
</tr>
</table>
</div>
</section>
<section id="certifications">
<div class="container">
<h2>Certifications</h2>
<table>
<tr>
<th>Certification</th>
<th>Provider</th>
</tr>
<tr>
<td>Infosys Springboard: Minitab - Data Analytics</td>
<td>Infosys</td>
</tr>
<tr>
<td>Python Basics</td>
<td>Coursera</td>
</tr>
<tr>
<td>Introduction to Artificial Intelligence</td>
<td>Coursera</td>
</tr>
<tr>
<td>Bioinformatics Methods</td>
<td>Coursera</td>
</tr>
</table>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Ritesh. All rights reserved.</p>
</div>
</footer>
</body>
</html>