-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
34 lines (31 loc) · 997 Bytes
/
about.html
File metadata and controls
34 lines (31 loc) · 997 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
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>About Me</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section>
<h2>Who Am I?</h2>
<p>Hi, I'm [Your Name]! I'm passionate about web development and enjoy solving complex problems with creative solutions.</p>
</section>
<section>
<h2>My Journey</h2>
<p>I started learning web development because I love creating things from scratch. My goal is to become a full-stack developer.</p>
</section>
<footer>
<p>© 2025 Your Name</p>
</footer>
</body>
</html>