-
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
335ba99
commit d825234
Showing
1 changed file
with
36 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,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Your Portfolio</title> | ||
<link rel="stylesheet" href="home.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Your Name</h1> | ||
<p>Web Developer</p> | ||
</header> | ||
<section id="about"> | ||
<h2>About Me</h2> | ||
<p>Add some information about yourself here.</p> | ||
</section> | ||
<section id="projects"> | ||
<h2>Projects</h2> | ||
<div class="project"> | ||
<h3>Project 1</h3> | ||
<p>Description of Project 1</p> | ||
</div> | ||
<div class="project"> | ||
<h3>Project 2</h3> | ||
<p>Description of Project 2</p> | ||
</div> | ||
<!-- Add more projects as needed --> | ||
</section> | ||
<section id="contact"> | ||
<h2>Contact Me</h2> | ||
<p>Email: [email protected]</p> | ||
<p>Phone: +1234567890</p> | ||
</section> | ||
</body> | ||
</html> |