-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (109 loc) · 3.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Thrinadh Manubothu</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
}
#nav {
background-color: #333;
color: #fff;
text-align: center;
}
#nav ul {
padding: 0;
}
#nav ul li {
display: inline;
margin-right: 20px;
}
#nav ul li a {
color: #fff;
text-decoration: none;
padding: 5px 10px;
}
#nav ul li a:hover {
background-color: #555;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
.section {
padding: 20px 0;
border-bottom: 1px solid #eaeaea;
}
.section:last-child {
border-bottom: none;
}
</style>
</head>
<body>
<div id="nav">
<ul>
<li><a href="#objective">Objective</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#volunteer">Volunteer</a></li>
</ul>
</div>
<div class="container">
<section id="objective" class="section">
<h2>Objective</h2>
<p>Passionate information technology graduate seeking to build technology that improves people’s lives. Gained programming expertise through hands-on project development.</p>
</section>
<section id="education" class="section">
<h2>Education</h2>
<p>R.V.R & J.C College of Engineering - Bachelor of Technology in Information Technology, CGPA: 8.4</p>
<p>Narayana Junior College - Intermediate, Percentage: 89.4%</p>
<p>Kennedy English Medium High School - 10th Class, CGPA: 9.7</p>
</section>
<section id="experience" class="section">
<h2>Experience</h2>
<p>Machine Learning Intern at PureML (May 2023 – November 2023)</p>
<p>Data Science & Business Analytics Intern at The Spark Foundation (May 2022 – June 2022)</p>
</section>
<section id="projects" class="section">
<h2>Projects</h2>
<p>Biometrics with Iris (Jan 2024 – Present)</p>
<p>CareerConnect (Dec 2022 – Feb 2023)</p>
<p>Q & A Application (Sept 2022 – Nov 2022)</p>
</section>
<section id="skills" class="section">
<h2>Technical Skills</h2>
<p>Languages: Python, Java, SQL (MySQL)</p>
<p>Frameworks: Flask</p>
<p>API Frameworks: REST</p>
<p>Cloud: AWS</p>
<p>Developer Tools: Git, Docker, VS Code, PyCharm, IntelliJ</p>
<p>Libraries: Pandas, NumPy, Matplotlib, Scikit-learn</p>
</section>
<section id="volunteer" class="section">
<h2>Volunteer Experience</h2>
<p>Team & Event Management at Informatrix (Nov 2023)</p>
</section>
</div>
<script>
// JavaScript for smooth scrolling and other interactive elements
document.querySelectorAll('#nav a').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetSection = document.querySelector(targetId);
targetSection.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
});
});
</script>
</body>
</html>