Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

<!

DOCTYPE html>

<html>

<head>

<title>My Portfolio</title>

</head>

<body>

<header>

<nav>

<ul>

<li><a href="#about">About Me</a></li>

<li><a href="#projects">Projects</a></li>

<li><a href="#contact">Contact</a></li>

</ul>

</nav>

</header>

<main>

<section id="about">

<h1>About Me</h1>

<p>Insert information about yourself here</p>

</section>

<section id="projects">

<h1>Projects</h1>

<ul>

<li><a href="#project1">Project 1</a></li>

<li><a href="#project2">Project 2</a></li>

<li><a href="#project3">Project 3</a></li>

</ul>

<section id="project1">

<h2>Project 1</h2>

<p>Insert information about project 1 here</p>

</section>
<section id="project2">

<h2>Project 2</h2>

<p>Insert information about project 2 here</p>

</section>

<section id="project3">

<h2>Project 3</h2>

<p>Insert information about project 3 here</p>

</section>

</section>

<section id="contact">

<h1>Contact</h1>

<p>Insert contact information here</p>

</section>

</main>

<footer>

<p>Copyright © My Name</p>

</footer>

</body>

</html>

You might also like