-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (60 loc) · 2.8 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
<!DOCTYPE html>
<html>
<head>
<title>Aditya Shrey</title>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="icon" href="assets/images/as.png" type="image/png">
</head>
<body>
<!-- Header Bar Section -->
<div class="header-bar">
<div class="header-link-left">
<a href="/" class="header-link-left">
<img src="assets/images/adityashrey.png" alt="aditya shrey" class="normal-image">
<img src="assets/images/adityashrey_hover.png" alt="aditya shrey" class="hover-image">
</a>
</div>
<nav class="header-link-right">
<a href="/projects/" class="header-link">projects</a>
</nav>
</div>
<!-- Personal Information Section -->
<div class="personal_body" id="about">
<!-- <img class="personal_img" src="assets/images/me.jpeg"> -->
<div class="personal-body-text">
<p class="personal_title">Hi, I’m Aditya.</p>
<p class="personal_contact" style="display: flex; align-items: center;"></p>
<p class="personal_text" style="line-height: 1.5;">Welcome to my personal corner of the internet!</p>
<p class="personal_text" style="line-height: 1.5;">I’m currently a BS/MS student at <strong>Vanderbilt University</strong> studying <strong>Computer Science</strong> and <strong>Applied Mathematics</strong>.
My academic and professional interests are rooted in <strong>machine learning</strong>, <strong>algorithms</strong>, and <strong>system architecture</strong>.
</p>
<p class="personal_text" style="line-height: 1.5;">
This website serves as a platform for me to showcase projects that
I’m passionate about. Join me as I explore the ever-evolving landscape of technology and innovation.
</p>
</div>
</div>
<!-- Footer Section -->
<div class="footer">
<p class="footer-text">
<a href="mailto:[email protected]">
<i class="fas fa-envelope"></i>
</a>
<a href="https://github.com/aditya-shrey" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/adityashrey/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</p>
</div>
<script>
function formatDate(date) {
const options = { year: 'numeric', month: 'long', day: 'numeric' };
return new Date(date).toLocaleDateString('en-US', options);
}
document.getElementById("last-modified").textContent = formatDate(document.lastModified);
</script>
</body>
</html>