Skip to content

Commit

Permalink
Merge pull request #9 from navahmed786/issue#1
Browse files Browse the repository at this point in the history
added about page
  • Loading branch information
navahmed786 authored Nov 20, 2023
2 parents 1f37850 + ce82b5d commit 9f56dde
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Navid Ahmed</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->
<script src="script.js" defer></script> <!-- Link to your JavaScript file -->
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html#home">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="index.html#Experience">Work Experience</a></li>
<li><a href="index.html#Resume">Resume</a></li>
<li><a href="index.html#Links">Other Links</a></li>
<!-- Add more navigation links as needed -->
</ul>
</nav>
</header>

<main>
<section id="about">
<h1>About Navid Ahmed</h1>
<p>Welcome to my about page. Here you can find information about me.</p>
<!-- Add more details about yourself here -->
</section>
</main>

<footer>
<p>&copy; Navid Ahmed. All rights reserved.</p>
</footer>
</body>
</html>

0 comments on commit 9f56dde

Please sign in to comment.