-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (65 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aranyo's Portfolio</title>
<link rel="stylesheet" href="style.css"> <!-- Ensure this path matches your actual CSS file location -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1 class="fade-in-down">Aranyo's Portfolio</h1>
<nav class="fade-in-down">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="projects.html">Projects</a>
<ul>
<li><a href="siftvest.html">SiftVest</a></li>
</ul>
</li>
<li><a href="fun.html">Fun</a>
<ul>
<li><a href="globalnativeflowersmap.html">Global Native Flowers Map</a></li>
<li><a href="ragaSynthPad.html">Harmonium Raga Generator</a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="intro" class="fade-in-down">
<h2>Welcome to My Portfolio</h2>
<p>I'm Aranyo, a Computer Science, Psychology, and Mathematics student at Yale University.</p>
</section>
<section id="skills" class="fade-in-down">
<h2>Skills Overview</h2>
<ul>
<li>Python</li>
<li>JavaScript</li>
<li>Machine Learning</li>
<li>Web Development</li>
<li>React</li>
<li>Data Analysis</li>
</ul>
</section>
<section id="resume" class="fade-in-down">
<h2>Resume</h2>
<p>Download my resume <a href="AranyoRay_Resume.pdf" download>here</a>.</p> <!-- Ensure the resume file name matches exactly -->
</section>
</main>
<footer class="fade-in-down">
<ul>
<li><a href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope"></i></a></li>
<li><a href="https://www.linkedin.com/in/aranyo/" target="_blank"><i class="fab fa-linkedin-in"></i></a></li>
<li><a href="https://x.com/aranyoray" target="_blank"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://github.com/aranyoray/" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://calendly.com/aranyo/" target="_blank"><i class="fas fa-calendar-alt"></i></a></li>
<li><a href="https://what-aranyo-said.webflow.io/" target="_blank"><i class="fas fa-pen-nib"></i></a></li>
</ul>
</footer>
</div>
</body>
</html>