Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
sillycodergirl authored Jun 10, 2024
1 parent f538bf3 commit 724aa04
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions index.html
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>

0 comments on commit 724aa04

Please sign in to comment.