-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
81 lines (76 loc) · 3.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/styles/style.css">
<link rel="stylesheet" href="./assets/styles/about.css">
<link rel="icon" type="image/x-icon" href="/assets/photos/profile.webp">
<title>About</title>
</head>
<body class="about_body">
<main>
<!-- Navigation Bar -->
<nav>
<div class="container">
<!-- Logo -->
<div class="logo">
<a href="index.html">YadhuKrishnan</a>
</div>
<!-- Menu Toggle Button for Mobile View -->
<button class="menu-toggle" aria-label="Toggle menu">
<span class="menu-icon"></span>
<span class="menu-icon"></span>
<span class="menu-icon"></span>
</button>
<!-- Navigation Links -->
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" style="color: #f39c12;">About</a></li>
<li><a href="project.html">Projects</a></li>
<li><a href="qualification.html">Qualification</a></li>
<li><a href="social.html">Socials</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- About Section -->
<section class="about">
<div class="des_container">
<!-- Card 1: Personal Background -->
<div class="main_card">
<p class="about_des card1">
Hi, I'm Yadhukrishnan, the only son in my small, close-knit family.
I have a deep passion for reading; books are my escape and my gateway to endless knowledge and adventure.
Music is another big part of my life, always providing inspiration and a sense of calm.
<!-- Image Related to Reading -->
<img src="./assets/photos/reading.svg" alt="Reading Illustration" class="reading">
</p>
</div>
<!-- Card 2: Passion for Technology -->
<div class="main_card">
<p class="about_des card2">
<!-- Image Related to Technology -->
<img src="./assets/photos/reading_2.svg" alt="Technology Illustration" class="technology">
<br><br><br>
I'm always eager to learn something new and love challenging myself to create innovative things.
Engaging with the latest technologies excites me, and I enjoy exploring how they can be used to solve problems and improve our lives.
</p>
</div>
<!-- Card 3: Sports and Active Lifestyle -->
<div class="main_card">
<p class="about_des card3">
Besides my love for intellectual pursuits, I'm also very active in sports.
I enjoy the physical challenge and the teamwork involved, which keeps me energized and focused.
Whether it's on the field or in front of a computer, I'm always looking for ways to grow, stay engaged, and make a positive impact.
<!-- Image Related to Sports -->
<img src="./assets/photos/sports.svg" alt="Sports Illustration" class="sports">
</p>
</div>
</div>
</section>
</main>
<!-- External JavaScript -->
<script src="./assets/scripts/navbar.js" defer></script>
</body>
</html>