-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
48 lines (41 loc) · 1.62 KB
/
Copy pathabout.html
File metadata and controls
48 lines (41 loc) · 1.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Advaith</title>
<link rel="stylesheet" href="styles/about.css">
<link rel="icon" href="assets/images/logo.png">
</head>
<body>
<header>
<h1>About Me</h1>
</header>
<main>
<div class="about-content">
<section>
<h2>Who Am I?</h2>
<p>Hey, I'm Advaith, also known as Cloneme. I started my competitive programming journey a year ago and have gained valuable insights into various concepts, particularly Data Structures and Algorithms for interviews. Besides CP, I have a keen interest in backend development and indie game development. Currently, I'm working on PrepCloud, a Cloud Storage service. There's a lot more to tell, but let's save that for another time!</p>
</section>
<section>
<h2>My Hobbies</h2>
<ul>
<li>Competitive Programming</li>
<li>Backend Development</li>
<li>Game Development</li>
</ul>
</section>
<section>
<h2>My Goals</h2>
<p>One of my major goals is to collaborate on an Open Source Project with like-minded individuals. It's a big one, and I'm excited about the journey!</p>
</section>
</div>
</main>
<footer>
<a class="back-button" href="index.html">Back</a>
<div>
<p>© 2023 Advaith</p>
</div>
</footer>
</body>
</html>