-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (78 loc) · 1.88 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
<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"
/>
<title>Viraj Mahesh</title>
<style>
body {
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: 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 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 studied 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>
</body>
</html>