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
85 changes: 85 additions & 0 deletions Projects/pavandeekshith/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem;
background-color: #333;
color: white;
}
.profile-image {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
.section {
padding: 1.5rem;
margin-bottom: 1.5rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.section h2 {
margin: 0;
padding-bottom: 0.5rem;
border-bottom: 2px solid #333;
}
</style>
</head>
<body>
<header>
<div>
<p>Hello buddy!</p>
<h1 style="margin: 0;">Pavan Deekshith</h1>
</div>
<div>
<img class="profile-image" src="" alt="Pavan Deekshith">
</div>
</header>
<div class="container">
<div class="section">
<h2>About Me</h2>
<p>
I am Pavan Deekshith, a Second year undergrad in Computer Science Discipline at IIT Gandhinagar, I am Passionate in Machine Learning and
</p>
</div>
<div class="section">
<h2>Courses</h2>
<p>
I am currently doing 3 major courses they are DSA, Discrete Mathematics, Signals Systems and Random Process.
</p>
</div>
<div class="section">
<h2>Skills</h2>
<p>
I am Proficient in Python, C and I am currently working on web development and Machine learning.
</p>
</div>
<div class="section">
<h2>Contact</h2>
<p>
E Mail : pavan.doddi@iitgn.ac.in
</p>
<p> Ph No: 9393881166</p>
</div>
</div>
</body>
</html>