0% found this document useful (0 votes)
14 views2 pages

Task 222

The document is an HTML portfolio resume with sections for home, content, certification, projects, workshops, webinars, skills, about, and contact information. It includes the person's name, interests, skills including HTML, CSS, JavaScript, Python, and web design. Contact information is also provided.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views2 pages

Task 222

The document is an HTML portfolio resume with sections for home, content, certification, projects, workshops, webinars, skills, about, and contact information. It includes the person's name, interests, skills including HTML, CSS, JavaScript, Python, and web design. Contact information is also provided.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 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: [email protected]</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