-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
35 lines (32 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Yash's Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="moon">
<div class="small-crater"></div>
<div class="small-crater"></div>
<div class="small-crater"></div>
<div class="small-crater"></div>
</div>
<div class="clouds"></div>
<div class="clouds-reverse"></div>
<div class="stars"></div>
<div class="container">
<h1 class="title">About Me</h1>
<p class="about-text">
Hi, I am Yash Kulkarni, a passionate software engineer and technology enthusiast. <br><br>
I have experience working with Python, React, Flask, and PostgreSQL, and I specialize in building <br>
dynamic web applications and working on end-to-end projects that solve real-world problems. <br><br>
In my free time, I enjoy trekking in the Himalayas and playing football.<br>
</p>
<button class="back-home-button" onclick="window.location.href='index.html'">Back to Home</button>
</div>
<script src="script.js"></script>
</body>
</html>