Web page portfolio

Personal Portfolio
<!-- Header Section -->
<header>
    <h1>Web Developer Portfolio</h1>
    <nav>
        <ul>
            <li><a href="#about">About Me</a></li>
            <li><a href="#projects">Projects</a></li>
            <li><a href="#contact">Contact Me</a></li>
        </ul>
    </nav>
</header>

<!-- About Me Section -->
<section id="about">
    <h2>About Me</h2>
    <p>Hi! My name is Mark teddy buen

`

  1. List item

`

, and I am a web developer with a passion for creating modern and responsive web applications. With skills in both front-end and back-end development, I enjoy solving complex problems and turning ideas into reality.


<!-- Projects Section -->
<section id="projects">
    <h2>Projects</h2>
    <ul>
        <li>
            <h3>Project 1: Portfolio Website</h3>
            <p>A personal portfolio showcasing my work and skills.</p>
        </li>
        <li>
            <h3>Project 2: E-commerce Site</h3>
            <p>A full-stack e-commerce platform with a custom-built shopping cart and payment integration.</p>
        </li>
        <li>
            <h3>Project 3: Blogging Platform</h3>
            <p>A content management system designed for bloggers with features like post creation, editing, and user authentication.</p>
        </li>
    </ul>
</section>

<!-- Contact Me Section -->
<section id="contact">
    <h2>Contact Me</h2>
    <form action="#">
        <label for="name">Name:</label>
        <input type="text" id="name" name="name" required>
        <label for="email">Email:</label>
        <input type="email" id="email" name="email" required>
        <label for="message">Message:</label>
        <textarea id="message" name="message" required></textarea>
        <button type="submit">Send Message</button>
    </form>
</section>

Hi. Can you please link to the challenge you are working on and clarify what you need help with? To post your code into the forum you need to add three backticks ``` before and after your code. Post your HTML and CSS.