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

<!

DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="home">
<h1>Welcome to My Portfolio</h1>
<p>Here you can learn more about my background and see some of my projects.</p>
</section>
<section id="about">
<h1>About Me</h1>
<p>I am a programmer with X years of experience in languages such as Python, Java,
and C++. I am skilled in web development, data analysis, and machine learning.</p>
<p>In my free time, I enjoy participating in hackathons and contributing to open source
projects.</p>
</section>
<section id="projects">
<h1>Projects</h1>
<ul>
<li>
<h2>Project 1</h2>
<p>Description of project 1</p>
</li>
<li>
<h2>Project 2</h2>
<p>Description of project 2</p>
</li>
<li>
<h2>Project 3</h2>
<p>Description of project 3</p>
</li>
</ul>
</section>
<section id="contact">
<h1>Contact Me</h1>
<p>You can reach me at:</p>
<ul>
<li>Email: example@email.com</li>
<li>Phone: 555-555-5555</li>
<li>LinkedIn: linkedin.com/in/example</li>
<li>GitHub: github.com/example</li>
</ul>
</section>
</body>
</html>

You might also like