Skip to content

Commit

Permalink
Added test page
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobucci committed Jan 6, 2024
1 parent 562e333 commit 0425af3
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>My GitHub Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to My GitHub Page</h1>
</header>

<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>

<main>
<section id="about">
<h2>About Me</h2>
<p>Write a brief introduction about yourself here.</p>
</section>

<section id="projects">
<h2>Projects</h2>
<ul>
<li>Project 1</li>
<li>Project 2</li>
<li>Project 3</li>
</ul>
</section>

<section id="contact">
<h2>Contact Me</h2>
<p>Email: [email protected]</p>
<p>Phone: 123-456-7890</p>
</section>
</main>

<footer>
<p>&copy; 2022 My GitHub Page. All rights reserved.</p>
</footer>
</body>
</html>

0 comments on commit 0425af3

Please sign in to comment.