HTML

Build a Page

Now it's time to put your knowledge into practice. Your task is to write a complete HTML page for a personal profile. The page should include proper document structure and use semantic HTML elements.

Your page should contain:

  • A main heading with the person's name

  • A short paragraph introducing them

  • An unordered list of three skills or interests

  • A link to an external website

Read the requirements on the right, then write your HTML in the editor below.

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>My Profile</title>
</head>
<body>
  <!-- Write your HTML here -->

</body>
</html>

Requirements

  • Include a valid DOCTYPE declaration
  • Use an h1 element for the person's name
  • Add a paragraph with a short introduction
  • Create an unordered list with at least three items
  • Include a link using the anchor tag with an href attribute
html.js
1
2
3
4
5
6
7
8
9
10
11
html