-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (80 loc) · 4.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Abhinav Vemulapalli | TBD</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="is-fullwidth">
<section class="section hero is-fullheight bg">
<div class="hero-body">
<div class="container has-text-centered">
<p class="title is-1" style="color: white;">
Abhinav Vemulapalli
</p>
<p class="subtitle" style="color: white;">
<a href="projects.html#cybersecurity" class="link is-success hover-link-animation">Hacker</a> | <a
href="projects.html#development" class="link is-purple hover-link-animation">Developer</a> | <a
href="tba.html" class="link is-info hover-link-animation">Photographer</a>
</p>
</div>
</div>
<div class="hero-footer">
<div class="columns is-centered is-vcentered">
<div class="column is-half has-text-centered">
<span class="icon is-large is-centered">
<a class="mdi mdi-36px mdi-chevron-down unu link" href="#about"></a>
</span>
</div>
</div>
</div>
</section>
<section class="section hero is-fullheight" id="about">
<div class="hero-body">
<div class="container">
<div class="columns is-centered is-vcentered is-mobile">
<div class="column is-4 has-text-centered">
<p class="title">Who am I?</p>
<figure class="image is-128x128 is-justify-content-center mb-5 mt-7 profile-pic"
style="display: inline-block;">
<img class="is-rounded" src="assets/headshot.jpg" alt="Photo of Abhinav N. Vemulapalli"
style="object-fit: cover; border-color: black; border-width: 2px;">
</figure>
<p class="subtitle">
I'm a <span id="age"></span> year old undergraduate at Georgia Institute of Technology
studying
Computer Engineering specializing
in <a class="underline is-warning hover-link-animation"
href="projects.html#cybersecurity">Cybersecurity</a> and <a
class="underline is-danger hover-link-animation" href="tba.html">Systems and
Architecture</a>. <a href="about.html">Want to learn more?</a>
</p>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>Interested? Here's my <a href="assets/Abhinav N. Vemulapalli.pdf">resume</a></p>
<p>Socials:</p>
<a href="https://www.linkedin.com/in/abhinav-vemulapalli/"><span class="icon is-large"><ion-icon
class="ion-ionic" name="logo-linkedin" size="large"></ion-icon></span></a>
</div>
</footer>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://unpkg.com/[email protected]/dayjs.min.js"></script>
<script>
setInterval(() => {
var t = dayjs().diff(dayjs(1078963200000), 'year', true);
$('#age').text(t.toString().substring(0, 12));
}, 60);
</script>
</body>
</html>