Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
132 changes: 132 additions & 0 deletions Projects/Srivathsa_Vamsi/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Srivathsa Vamsi Chaturvedula - Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}

header {
background-color: #333;
color: white;
text-align: center;
padding: 2rem;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}

.section {
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 2rem;
margin-bottom: 2rem;
transition: background-color 0.3s ease, transform 0.3s ease;
cursor: pointer;
}

.section h2 {
font-size: 2rem;
margin-bottom: 1rem;
font-weight: bold;
color: black;
}

.section p {
line-height: 1.6;
color: black;
}

.about-me {
background-color: #FFCDD2; /* Light Red */
color: #333; /* Dark Red */
}

.projects {
background-color: #BBDEFB; /* Light Blue */
color: #333; /* Dark Blue */
}

.skills {
background-color: #E0E0E0; /* Light Gray */
color: #333; /* Dark Gray */
}

.section:hover {
background-color: #f1f1f1;
transform: translateY(-5px);
}

footer {
text-align: center;
padding: 2rem;
background-color: #333;
color: white;
}
</style>
<script>
const colors = [
['#FFCDD2', '#E57373'], // Shades of Red
['#BBDEFB', '#64B5F6'], // Shades of Blue
['#E0E0E0', '#9E9E9E'], // Shades of Gray
];

function getRandomColor(element) {
const randomColorSet = colors[Math.floor(Math.random() * colors.length)];
const randomBackgroundColor = randomColorSet[0];

element.style.backgroundColor = randomBackgroundColor;
}

function extrudeSection(element) {
element.style.transform = "translateY(-5px)";
}

function unextrudeSection(element) {
element.style.transform = "translateY(0)";
const sectionClass = element.classList[1];
const initialColors = {
'about-me': '#FFCDD2', // Light Red
'projects': '#BBDEFB', // Light Blue
'skills': '#E0E0E0', // Light Gray
};
element.style.backgroundColor = initialColors[sectionClass];
}
</script>
</head>
<body>
<header>
<h1>Srivathsa Vamsi Chaturvedula</h1>
<p>Computer Science & Engineering Student</p>
</header>
<div class="container">
<div class="section about-me" onmouseover="extrudeSection(this)" onmouseout="unextrudeSection(this)" onmousemove="getRandomColor(this)">
<h2>About Me</h2>
<p>I am a second year UG student at IIT Gandhinagar, majoring in Computer Science and Engineering. I am interested in Machine Learning and Natural Language Processing, and I have a strong fascination for algorithmic problem-solving and puzzles.</p>
</div>

<div class="section projects" onmouseover="extrudeSection(this)" onmouseout="unextrudeSection(this)" onmousemove="getRandomColor(this)">
<h2>Projects</h2>
<p>One of my projects involves Natural Language Processing, where I am analyzing demographic information of annotators. This project showcases my passion for exploring the insights that can be derived from linguistic data.</p>
</div>

<div class="section skills" onmouseover="extrudeSection(this)" onmouseout="unextrudeSection(this)" onmousemove="getRandomColor(this)">
<h2>Skills</h2>
<p>I am proficient in C++, C, and Python, along with libraries like TensorFlow, PyTorch, and NLTK. My skill set extends to machine learning, deep learning, and natural language processing, allowing me to create intelligent and data-driven solutions.</p>
</div>
</div>
<footer>
<p>&copy; 2023 Srivathsa Vamsi Chaturvedula. All rights reserved.</p>
</footer>
</body>
</html>