Practice Session

Time Limit: 1 Hour

Task 1: Basic Structure

  • Create an HTML page
  • Add a Page Title in the head
  • Include one main heading (<h1>)
  • Add two paragraphs (<p>)

Task 2: Media & Links

  • Add a link to Google
  • Insert an image below the link

Task 3: Portfolio Structure

  • Header: "My Portfolio"
  • Sub-heading: "About Me"
  • Text: "I am learning web development."
  • Link: "Visit My GitHub"
  • Add a profile image

Structure Blueprint

<!DOCTYPE html>
<html>
<head>
  <title>...</title>
</head>
<body>
  <!-- Your Tasks Here -->

  <h1>...</h1>
  <p>...</p>
  <a href="...">...</a>
  <img src="..." alt="...">

</body>
</html>