-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (144 loc) · 4.4 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<link rel="icon" href="favicon/ss.ico" type="image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Josefin Slab">
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="js/main.js"></script>
<title>Satvik Sethia</title>
<style>
.title_image {
padding: 0;
margin: 0;
width: 100%;
/* box-shadow: 0em 1em 2em rgba(0,0,0,0.1); */
}
.r_bio {
margin: 1.5em;
font-size: 2em;
color: white;
padding-bottom: 2em;
}
.main {
margin: 0;
padding: 0;
position: absolute;
background-color: #DA5B4C;
}
.btn {
margin-bottom: 1.5em;
}
.title_bg {
position: relative;
text-align: center;
margin-right: 0;
margin-left: 0;
padding: 0;
max-width: 100em;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.text {
font-family: Josefin Slab;
}
.title {
font-size: 4em;
color: white;
}
.socicon {
height: 2em;
width: 2.5em;
margin-bottom: 2em;
padding-left: 1em;
}
.navbar {
background-color: rgba(0, 0, 0, 0.5);
font-size: 1.5em;
padding: 0;
padding-left: 0.5em;
}
.navbar-text {
padding-left: 0.5em;
color: white;
cursor: pointer;
}
.nav-sep {
padding-left: 0.5em;
}
.f-soc {
padding-left: 0em;
height: 1.5em;
margin-top: 0.25em;
}
.dp_image {
width: 10em;
height: 10em;
box-shadow: 0em 1em 2em rgba(0,0,0,0.1);
}
.dp_row {
padding-top: 3.5em;
}
</style>
</head>
<body>
<div class="main container-fluid">
<nav class="navbar fixed-top navbar-expand-lg">
<span class="text navbar-text" id="nav-home">Home</span>
<span class="text navbar-text nav-sep">|</span>
<span class="text navbar-text" id="nav-about">About Me</span>
<span class="text navbar-text nav-sep">|</span>
<span class="text navbar-text" id="nav-link">Links</span>
</nav>
<div class="container title_bg">
<img class="img-fluid title_image" src="images/Title_Background.jpg">
<div class="centered text title">Hi, I'm Satvik.</div>
</div>
<div class="container c_bio">
<div class="d-flex justify-content-center row dp_row">
<!-- <div class="col-lg-5"></div>
<div class="col-md-3" style="padding-left: 0"> -->
<img class="img-fluid dp_image rounded-circle" src="images/DP.jpg">
<!-- </div> -->
</div>
<div class="row r_bio">
<span class="align-text-middle text-justify text-center text">
Hello! My name is Satvik Sethia, and I work as a Senior Software Engineer at HubSpot.<br>
I graduated from the University of Illinois at Urbana-Champaign, majoring in Computer Science and Lingustics.
Distinct from all other engineers, I also got a minor in Math.<br>
Probably not surprisingly, this website is still a work in progress, and always will be, just like me. <br><br>
When I made this website as a sophomore I used to, "write for the sports section of the local newspaper, play the piano, and watch soccer in
my free time." I still watch soccer in my free time.
</span>
</div>
</div>
<div class="container resume text">
<div class="d-flex justify-content-center row">
<!-- <div class="col-md-6"></div> -->
<!-- <div class="col-md-6"> -->
<a class="btn btn-lg btn-light resume-btn" role="button" onClick="window.open('files/Satvik_Sethia_Resume.pdf');"><strong>My Resume</strong></a>
<!-- </div> -->
</div>
<div class="d-flex justify-content-center row">
<!-- <div class="col-md-6"></div>
<div class="col-md-6" style="padding: 0; padding-left: 1em"> -->
<a href="https://github.com/ssethia2">
<img class="socicon g-soc" src="socicon/github.svg">
</a>
<a href="https://linkedin.com/in/satviksethia">
<img class="socicon l-soc" src="socicon/linkedin.ico">
</a>
<a href="https://facebook.com/yashsethia123123">
<img class="socicon f-soc" src="socicon/facebook.svg">
</a>
<!-- </div> -->
</div>
</div>
</div>
</body>
</html>