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.
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.
PersonalWebpage
under the Web Development
folder you created initially.PersonalWebpage
folder using VSCode. Then, create a file named index.html
. This will be your main HTML file.index.html
file in your text editor.<!DOCTYPE html>
<html>
<head>
<title>Your Name - Personal Webpage</title>
</head>
<body>
<!-- We will add more content here -->
</body>
</html>
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>
<img src="path/to/your-image.jpg" alt="Description of the image">
<table>
or <strong>
, to enhance certain parts of your content.index.html
file in a web browser to see how it looks.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!