Skip to content

Commit

Permalink
Add profile picture and make the design responsive
Browse files Browse the repository at this point in the history
  • Loading branch information
virajmahesh committed Jul 27, 2024
1 parent 81c4fe3 commit fcef6fb
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 23 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added assets/.DS_Store
Binary file not shown.
Binary file removed assets/profile.png
Binary file not shown.
Binary file added assets/profile.webp
Binary file not shown.
87 changes: 64 additions & 23 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,38 +1,79 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Viraj Mahesh - Senior Product Manager at YouTube, UC Berkeley graduate">
<meta name="author" content="Viraj Mahesh">
<meta name="keywords" content="Viraj Mahesh, YouTube, Product Manager, UC Berkeley, EECS">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Viraj Mahesh - Senior Product Manager at YouTube, UC Berkeley graduate"
/>
<meta name="author" content="Viraj Mahesh" />
<meta
name="keywords"
content="Viraj Mahesh, YouTube, Product Manager, UC Berkeley, EECS"
/>
<title>Viraj Mahesh</title>
<style>
body {
font-size: x-large;
font-size: 16px;
line-height: 1.6;
margin: 0;
padding: 20px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
max-width: 800px;
margin: 0 auto;
}
.profile-image {
width: 200px;
height: 200px;
margin-bottom: 20px;
}
.content {
text-align: left;
}
a {
font-size: large;
font-size: 16px;
}
a:hover {
text-decoration: underline;
}
@media (min-width: 768px) {
.container {
flex-direction: row;
align-items: flex-start;
}
.profile-image {
margin-right: 40px;
margin-bottom: 0;
}
.content {
text-align: left;
}
}
</style>
</head>

<body>
<div>
<p>
Hi, I'm Viraj Mahesh. I'm a Senior Product Manager at YouTube where I
work on the video watch page.
</p>
</div>
<div>
<p>
Before YouTube, I received my B.S. in Electrical Engineering and
Computer Science from UC Berkeley.
</p>
<div class="container">
<img
src="assets/profile.webp"
alt="Viraj Mahesh"
class="profile-image"
/>
<div class="content">
<p>
Hi, I'm Viraj. I'm a Senior Product Manager at YouTube. Before YouTube, I received my B.S. in Electrical
Engineering and Computer Science from UC Berkeley.
</p>
<p>
<a href="assets/resume.pdf">Resume</a>.
<a href="https://linkedin.com/in/virajmahesh">LinkedIn</a>.
<a href="https://github.com/virajmahesh">GitHub</a>.
</p>
</div>
</div>
<p>
<a href="assets/resume.pdf">Resume</a>.
<a href="https://linkedin.com/in/virajmahesh">LinkedIn</a>.
<a href="https://github.com/virajmahesh">GitHub</a>.
</p>
</body>
</html>

0 comments on commit fcef6fb

Please sign in to comment.