intro-frontend-course

Introduction

Welcome to your first project in the “Intro to Frontend Development” course. In this project, you will create a simple personal webpage using basic HTML elements. This task will help you apply the HTML knowledge you’ve gained and give you hands-on experience in building and structuring a webpage from scratch.

Objective

Build a personal webpage that includes a brief introduction about yourself, a list of your hobbies or interests, and a contact section. You’ll use a variety of HTML elements to structure your content effectively.

Requirements

Instructions

1. Setup Your Project

2. Create the Basic HTML Structure

<!DOCTYPE html>
<html>
<head>
    <title>Your Name - Personal Webpage</title>
</head>
<body>
    <!-- We will add more content here -->
</body>
</html>

3. Add Content

Hobbies or Interests: Use a list to display your hobbies or interests.

<section>
    <h2>My Interests</h2>
    <ul>
        <li>Hobby 1</li>
        <li>Hobby 2</li>
        <li>Hobby 3</li>
    </ul>
</section>

Contact Information: Add a section with your contact details or a link to your professional profile.

<footer>
    <h2>Contact Me</h2>
    <p>Email: [Your Email]</p>
    <p>LinkedIn: <a href="your-linkedin-url">View my profile</a></p>
</footer>

4. Enhance Your Page

<img src="path/to/your-image.jpg" alt="Description of the image">

5. Test Your Webpage

6. Document Your Project

By completing this project, you’ll have created a functional personal webpage that showcases your ability to use HTML effectively. This webpage can serve as the foundation for more complex projects as you advance in your frontend development studies. Enjoy the process of building and customizing your own webpage—it’s a great way to learn and demonstrate your growing skills!