-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (80 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Varuni Desai - Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header Section -->
<header>
<h1>Varuni Desai</h1>
<!--p>Fourth-year CSE Student | Full-Stack Developer | Problem Solver</p-->
</header>
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<p>A dedicated and driven CSE student specializing in algorithmic problem solving, and real-time data processing applications. Passionate about enhancing skills in Full-Stack development.</p>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>Skills</h2>
<ul>
<li><strong>Languages:</strong> C, C++, SQL, Python</li>
<li><strong>Frameworks:</strong> Node.js</li>
<li><strong>Tools:</strong> Postman, MongoDB, Git</li>
<li><strong>Certifications:</strong> JNCIA-Junos, HackerRank SQL Basic</li>
</ul>
</section>
<!-- Projects Section -->
<section id="projects">
<h2>Projects</h2>
<div class="project">
<h3>Foreground and Background Image Harmonization</h3>
<p>Samsung R&D Project focusing on image harmonization techniques for high-quality composite images.</p>
</div>
<div class="project">
<h3>BrewHub: The Tea Enthusiast's Web Oasis</h3>
<p>Developed backend interface using NodeJS, delivering an engaging user experience for menu displays and orders.</p>
</div>
<div class="project">
<h3>Hostel Management System</h3>
<p>Developed a system for room allocation and availability tracking with data management functionalities using C++.</p>
</div>
<div class="project">
<h3>Image to Text to Speech Conversion</h3>
<p>Developed a project that extracts text from images and converts it to speech, integrating OCR and TTS technologies to aid accessibility and enhance user experience.</p>
</div>
</section>
<!-- Experience Section -->
<section id="experience">
<h2>Experience</h2>
<div class="experience">
<h3>Project Intern - Samsung R&D</h3>
<p>Worked on deep learning and image processing, contributing to the development and implementation of a harmonization module.</p>
</div>
</section>
<!-- Achievements Section -->
<section id="achievements">
<h2>Achievements</h2>
<ul>
<li>Top 200 in GFG Job-a-thon 36</li>
<li>5th place in DataCamp Bee-Friendly Plants Analysis Project</li>
<li>Solved 500+ DSA problems across various platforms</li>
<li>5-star rating in C++ coding on HackerRank</li>
<li>4-star rating in Problem Solving on HackerRank</li>
</ul>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact</h2>
<p>LinkedIn: <a href="https://www.linkedin.com/in/varuni-desai-908887227/">varuni-desai</a></p>
<p>GitHub: <a href="https://github.com/Varuni387">varuni-desai</a></p>
<p>Email: <a href="mailto:[email protected]">varuni-desai</a></p>
</section>
<footer>
<p>© 2024 Varuni Desai. All Rights Reserved.</p>
</footer>
</body>
</html>