-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
10a13d3
commit d77c022
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>About Me - Your Name</title> | ||
</head> | ||
<body> | ||
|
||
<!-- Navigation Menu --> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><strong>About</strong></li> | ||
<li><a href="experience.html">Experience</a></li> | ||
<li><a href="projects.html">Projects</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<!-- About Section --> | ||
<section> | ||
<h1>About Me</h1> | ||
<p>Write a detailed introduction about yourself, your background, your skills, and your professional interests.</p> | ||
</section> | ||
|
||
<!-- Footer --> | ||
<footer> | ||
<p>© 2024 Your Name. All rights reserved.</p> | ||
</footer> | ||
|
||
</body> | ||
</html> |