-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (75 loc) · 3.35 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
<!DOCTYPE html>
<html lang="en">
<style type="text/css">
body,
html {
height: 100%;
}
.bg {
/* The image used */
background-image: url("website/bg.jpg");
/* Half height */
height: 50%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
color: #ffffff;
}
</style>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Abhinav Kasamsetty</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap core CSS -->
<link href="website/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="website/css/mdb.min.css" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link href="website/css/style.css" rel="stylesheet">
</head>
<body>
<div class="bg">
<div class="flex-center flex-column">
<h1 class="animated fadeIn mb-2" class="font-weight-bold">Abhinav Kasamsetty</h1>
<h5 class="animated fadeIn mb-3">Software Engineer at Microsoft</h5>
</div>
<div style="color:#000000" class="flex-center flex-column">
<p class="animated fadeIn mb-1">Hi! I'm a software engineer at Microsoft on the Edge Progressive Web Apps
team.
</p>
<p class="animated fadeIn mb-1">I graduated from UT Austin with a B.S. in Computer Science in 2020.</p>
<p class="animated fadeIn mb-1">During college, I interned at Amazon for two summers.</p>
<p class="animated fadeIn mb-1">I have experience working with C++, Java, C#, Node.js, and Python through
work, class, and side projects.</p>
<p class="animated fadeIn mb-2">In my free time, I enjoy basketball, learning Japanese, working out, fantasy
football, and gaming.</p>
<a class="animated fadeIn mb-3" href="AbhinavKasamsettyResume.pdf">See my resume here.</a>
<a class="animated fadeIn mb-4" href="mailto:[email protected]">[email protected]</a>
<nav class="navbar-expand-xl">
<ul class="navbar-nav nav-flex-icons">
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/abhinavkasamsetty/"><i
class="fa fa-linkedin fa-2x"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/abhinavk99"><i class="fa fa-github fa-2x"></i></a>
</li>
</ul>
</nav>
</div>
</div>
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="website/js/jquery-3.2.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="website/js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="website/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="website/js/mdb.min.js"></script>
</body>
</html>