This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (45 loc) · 2.24 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.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=Epilogue:wght@300;400;500;600;700&family=Inter:wght@400;700;900&family=Space+Grotesk:wght@300;400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/9b17ea3e38.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</head>
<body>
<div class="container">
<header>
<nav>
<div class="logo"><a href="index.html">Aayush</a></div>
<ul class="nav-links">
<li><a href="">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div class="hamburger">☰</div>
</nav>
</header>
<main class="content">
<div class="header-text">
<p>Aayush Shukla</p>
<h1>Hey there! I'm an <span>open-source developer</span><br>from India.</h1>
</div>
</main>
<footer>
<div class="footer-content">
<ul class="socials">
<li><a href="https://linkedin.com/in/oreus" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://github.com/a2ys" target="_blank"><i class="fa-brands fa-github"></i></a></li>
</ul>
</div>
<div class="footer-bottom">
<p>© This is an original work of <a href="https://github.com/a2ys" target="_blank">Aayush Shukla</a> and is licensed under the <a href="https://github.com/a2ys/a2ys.github.io/blob/master/LICENSE.md" target="_blank">GNU GPL v3</a>.</p>
</div>
</footer>
</div>
</body>
</html>