-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (67 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aravind Subramanian</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="nav-content">
<div class="hamburger" id="hamburger-menu">
<span></span>
<span></span>
<span></span>
</div>
<nav class="nav-menu" id="nav-menu">
<ul>
<li class="theme-item">
<button id="themeToggle">
Theme <i class="fas fa-moon"></i>
</button>
</li>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#book-highlights">Book Highlights</a></li>
<li><a href="#currently-reading">Currently reading</a></li>
</ul>
</nav>
<div class="social-links">
<a href="https://x.com/Aravind__77" target="_blank" rel="noopener noreferrer">
<i class="fab fa-x-twitter"></i>
</a>
<a href="https://www.linkedin.com/in/aravind-subramanian179/" target="_blank" rel="noopener noreferrer">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://www.youtube.com/@aravind.subramanian" target="_blank" rel="noopener noreferrer">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</header>
<main>
<section id="home">
<h1>Aravind Subramanian</h1>
<p class="tagline">Autodidact | Entrepreneur | Tech Enthusiast</p>
<div class="cta-buttons">
<a href="#about" class="cta-button">About Me</a>
<a href="#projects" class="cta-button">My Projects</a>
</div>
</section>
<section id="about">
<h2>About Me</h2>
<p>I'm a curiosity driven autodidact and entrepreneur with a keen interest in technology. My journey in the tech world has been driven by a desire to learn, create, and innovate. From coding websites to exploring new business ideas, I'm constantly pushing my boundaries and seeking new challenges.</p>
<p>Currently, I'm focused on honing my trading skills, building impactful websites, and exploring the intersection of technology and entrepreneurship. My goal is to leverage technology to solve real-world problems and create value for others.</p>
</section>
</main>
<footer>
<p>© 2024 Aravind Subramanian. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>