Skip to content
Open
Show file tree
Hide file tree
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
Binary file added Projects/SriranganS/image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Projects/SriranganS/portf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions Projects/SriranganS/portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="portfoliocss.css">
<title>Srirangan S - Portfolio</title>
<link rel icon href = "portf.png">
</head>
<body>
<header>
<img src="image.jpg" alt="Srirangan S">
<h1>Srirangan S</h1>
</header>
<section class="about">
<h2>About Me</h2>
<p>
I am Srirangan S, a second year BTech Mechanical Engineering student at IIT Gandhinagar.
I am still in the midst of exploring my interests and am yet to find my true calling.
</p>
</section>
<section class = "skills">
<h2>
Skills
</h2>
<p>
My skills include programming languages such as Python, C and web/app development languages such as JavaScript and Flutter.
</p>
<p>
I have decent proficiency in the mechanical trades of carpentry, additive manufacturing and laser cutting.
</p>
<p>
I am eloquent in English and Tamil and can speak Hindi, Japanese and Telugu at an elementary level. I can read a total of 7 scripts - Tamil, Roman, Devanagari, Greek, Grantham, Malayalam and Brahmi.
</p>
</section>
<section class="contact">
<h2>
Contact Me
</h2>
<p>
<a href = "https://in.linkedin.com/in/srirangan-s-346689275?trk=people-guest_people_search-card">LinkedIn</a>
<a href = "https://github.com/SriranganS">GitHub</a>
</p>
</section>

</body>
</html>
47 changes: 47 additions & 0 deletions Projects/SriranganS/portfoliocss.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/* Reset some default styles */
body, h1, h2, p {
margin: 0;
padding: 0;
}

/* Basic styling */
body {
font-family: Arial, sans-serif;
background-color: #555555;
}

header {
text-align: center;
padding: 20px 0;
background-color: #f90142;
color: #fff;
}

header img {
width: 150px;
border-radius: 50%;
}

.about {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #456d94;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skills {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #23921f;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #92871f;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}