-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
27 lines (26 loc) · 1.05 KB
/
about.html
File metadata and controls
27 lines (26 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="about.css" />
<title>About me</title>
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects/projects.html">Projects</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</nav>
<div class="about-me">
<div class="about-text">
<h1>About Me</h1>
<h3>Hi, I’m Iniya Rathinakumar, a high school student and passionate programmer. I love creating projects that combine creativity and problem-solving, from building apps to designing simulations. I enjoy learning new technologies, experimenting with code, and sharing my work with others. On this site, you can explore some of my projects, see the skills I’ve developed, and get in touch if you want to collaborate or connect.</h3>
</div>
<div class="about-image">
<img src="iniya.png" alt="Iniya Rathinakumar">
</div>
</div>
</body>
</html>