-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
28 lines (28 loc) · 890 Bytes
/
about.html
File metadata and controls
28 lines (28 loc) · 890 Bytes
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
<html lang="en">
<head>
<title>About Us</title>
<link rel="stylesheet" href="about.css">
</head>
<body>
<div class="about-section">
<div class="inner-container">
<h1>About Me</h1>
<p class="text">
I'm just a kid who's four,
Each day I grow some more,
I like exploring,
I'm Ashwin.
So many things to do,
Each day is something new,
I'll share them with you,
I'm Ashwin.
</p>
<div class="directory">
<span><a href="index.html">Home Page</a></span>
<span class="current"><a href="about.html">About me</a></span>
<span><a href="hobbies.html">My Hobbies</a></span>
</div>
</div>
</div>
</body>
</html>