-
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
f538bf3
commit 724aa04
Showing
1 changed file
with
51 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,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Personal Website</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="name-bio"> | ||
<h1>Your Name</h1> | ||
<p>This is a short bio about you. Describe your background, interests, and what you do.</p> | ||
</div> | ||
</header> | ||
|
||
<section class="skills"> | ||
<h2>Skills</h2> | ||
<ul> | ||
<li>Skill 1</li> | ||
<li>Skill 2</li> | ||
<li>Skill 3</li> | ||
<li>Skill 4</li> | ||
</ul> | ||
</section> | ||
|
||
<section class="previous-work"> | ||
<h2>Previous Work</h2> | ||
<div class="work-item"> | ||
<h3>Project Title 1</h3> | ||
<p>Description of your project. Explain what you did, the technologies used, and any notable achievements.</p> | ||
</div> | ||
<div class="work-item"> | ||
<h3>Project Title 2</h3> | ||
<p>Description of your project. Explain what you did, the technologies used, and any notable achievements.</p> | ||
</div> | ||
<!-- Add more work items as needed --> | ||
</section> | ||
|
||
<footer> | ||
<h2>Social Media</h2> | ||
<ul class="social-media"> | ||
<li><a href="https://www.linkedin.com" target="_blank">LinkedIn</a></li> | ||
<li><a href="https://www.github.com" target="_blank">GitHub</a></li> | ||
<li><a href="https://www.twitter.com" target="_blank">Twitter</a></li> | ||
<li><a href="https://www.facebook.com" target="_blank">Facebook</a></li> | ||
<!-- Add more social media links as needed --> | ||
</ul> | ||
</footer> | ||
</body> | ||
</html> |