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 pathabout.html
87 lines (79 loc) · 4.29 KB
/
about.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
85
86
87
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</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>
</head>
<body>
<div class="container">
<header>
<nav>
<div class="logo"><a href="index.html">Aayush</a></div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="">About</a></li>
</ul>
</nav>
</header>
<main class="content">
<div class="about">
<div class="container">
<div class="header-text">
<p>Hey there! I'm <span>Aayush Shukla</span>.</p>
<h1>I like to <span>learn</span> new technologies and <span>contribute to open-source</span> projects to the best of my ability.</h1>
</div>
</div>
<div class="container">
<div class="header-text">
<h1>My career so far</h1>
<h3>As of now, I'm still a <span>student</span>, so a corporate career is off the charts.<br><br>I've worked on <span>many open-source projects</span>, some of which include a Music Player in Python, a Chess AI in Python and implementation of the same in Java.<br><br>In the sidelines, I'm actively <span>looking for open-source projects to contribute</span>, and also working on some of my own projects.</h3>
</div>
</div>
<div class="container">
<div class="header-text">
<h1>Skills</h1>
<h3>
<div class="elem">UI/UX Design</div>
<div class="elem">Artificial Intelligence</div>
<div class="elem">Android Development</div>
<div class="elem">Firebase</div>
<div class="elem">Git</div>
<div class="elem">Linux</div>
</h3>
</div>
</div>
<div class="container">
<div class="header-text">
<h1>Languages</h1>
<h3>
<div class="elem">Java</div>
<div class="elem">Python</div>
<div class="elem">C++</div>
<div class="elem">JavaScript</div>
<div class="elem">Kotlin</div>
<div class="elem">Dart</div>
</h3>
</div>
</div>
</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>