-
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
562e333
commit 0425af3
Showing
1 changed file
with
46 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,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>© 2022 My GitHub Page. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> |