Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Resume</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<backgroung
<header>
<div class="container">
<h1>My Portfolio</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#content">Content</a></li>
<li><a href="#certification">Certification</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#workshops">Workshops</a></li>
<li><a href="#webinars">Webinars</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#resume">Resume</a></li>
</ul>
</nav>
<main>
<section id="about">
<h2>About Me</h2>
<p>I'm [Your Name], a passionate [Your Profession/Interest]. I love
[Something You Love] and enjoy [Another Thing You Enjoy].</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
<li>Web Design</li>
</ul>
</section>

</div>
</header>

<section id="home" class="section">


<div class="container">
<h2>Home</h2>
<!-- Your home content goes here -->
</div>
</section>

<section id="content" class="section">


<div class="container">
<h2>Content</h2>
<!-- Your content goes here -->
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<p>You can reach me at:</p>
<ul>
<li>Email: yourname@example.com</li>
<li>Phone: +1234567890</li>
<li>LinkedIn: <a href="[Your LinkedIn Profile URL]">[Your
Name]</a></li>
</ul>
</section>

<!-- Repeat similar sections for other parts of your portfolio -->

<footer>
<div class="container">
<p>&copy; 2024 My Personal Website. All rights reserved.</p>
</div>
</footer>

<script src="script.js"></script>
</body>
</html>

You might also like