2.1.5 - Create an "About Me" HTML Page
Web Design (Picasso)
Starter and Solution Code
| index.html | |
|---|---|
Did you attempt the exercise before looking at the solution?
We strongly suggest that you try the exercise yourself and use the starter code before looking at the solution code.
Prompt (CodeHS)
Your task is to create a simple HTML page that introduces yourself. Follow the steps below to build your page:
- Start with the Basic Structure:
- At the top of your document, declare the document type with <!DOCTYPE html>
-
Create the ,
, and tags to set up the structure of your HTML page. -
Add a Title:
-
Inside the
section, include atag with the text “About Me.” This title will appear in the browser tab. -
Create a Heading for Your Name:
-
Inside the
section, use antag to display your full name.
-
Add Your Grade:
-
Use a paragraph
tag to state your current grade level (e.g., “I am in the 10th grade.”).
-
Share an Activity or Hobby:
-
Use another
tag to describe an activity or hobby you enjoy. You can write about why you like it or how you got interested in it.
-
Save and Preview:
- Save your HTML file and preview it in a web browser to make sure everything is displaying correctly.