-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
69 lines (65 loc) · 3.26 KB
/
experience.html
File metadata and controls
69 lines (65 loc) · 3.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trisha Sharma - Experience</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="experience.html" class="active">Experience</a></li>
<li><a href="tech-stack.html">Tech Stack</a></li>
</ul>
</nav>
</header>
<main>
<section id="experience">
<h1>Experience</h1>
<div class="experience-item">
<h2>Turing Sapiens - Vice President</h2>
<p class="duration">June 2024 - Present</p>
<p class="description">Tech club by department of IOT</p>
<ul>
<li>Spearheaded strategic initiatives, including hackathons and workshops, resulting in a 30% membership increase.</li>
<li>Augmented community involvement and secured the success of technology events through innovative initiatives and collaborations.</li>
</ul>
</div>
<div class="experience-item">
<h2>Ecell MUJ – Senior</h2>
<p class="duration">Sept 2023 - May 2023</p>
<p class="description">Entrepreneurship cell at MUJ</p>
<ul>
<li>Implemented a centralized communication tool and structured team updates, enhancing collaboration efficiency and reducing project turnaround time by 40%.</li>
<li>Optimized resource allocation by analyzing team needs and aligning resources, boosting operational efficiency across 10+ ongoing projects.</li>
</ul>
</div>
<div class="experience-item">
<h2>Smart India Hackathon | Participant</h2>
<p class="duration">Sept 2024</p>
<ul>
<li>Designed a user-friendly prototype for the Ministry of AYUSH within 48 hours, focusing on intuitive navigation to enhance user engagement and accessibility.</li>
<li>Created prototype UI/UX focused on intuitive navigation and user accessibility.</li>
</ul>
</div>
<div class="experience-item">
<h2>Hacktoberfest | Participant</h2>
<p class="duration">Oct 2024</p>
<ul>
<li>Contributed 4 successful pull requests to Redwood Labs, enhancing repository functionality and designing visually appealing banners for GitHub projects.</li>
<li>Developed predictive models for Micro-Gas-Turbine energy outputs, leveraging Python and statistical methods to enhance accuracy in renewable energy forecasting.</li>
<li>The event fostered community, allowed me to blend design with coding.</li>
</ul>
</div>
</section>
</main>
<footer>
<p>© 2025 Trisha Sharma. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>