-
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
4c55e61
commit 903e1de
Showing
1 changed file
with
26 additions
and
3 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 |
---|---|---|
@@ -1,10 +1,33 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>My Simple Website</title> | ||
<title>Your Name - Resume</title> | ||
<!-- Add CSS links here --> | ||
</head> | ||
<body> | ||
<h1>Welcome to My Website</h1> | ||
<p>This is a paragraph on my website!</p> | ||
<header> | ||
<!-- Header content (Name, Job Title, Photo) --> | ||
</header> | ||
<nav> | ||
<!-- Navigation bar --> | ||
</nav> | ||
<section id="about"> | ||
<!-- About Me --> | ||
</section> | ||
<section id="experience"> | ||
<!-- Experience Section --> | ||
</section> | ||
<section id="education"> | ||
<!-- Education Section --> | ||
</section> | ||
<section id="skills"> | ||
<!-- Skills Section --> | ||
</section> | ||
<section id="projects"> | ||
<!-- Projects/Portfolio --> | ||
</section> | ||
<footer> | ||
<!-- Footer with contact and social media links --> | ||
</footer> | ||
</body> | ||
</html> |