0
0
HTMLmarkup~15 mins

What is HTML - Hands-On Activity

Choose your learning style9 modes available
What is HTML
📖 Scenario: You want to create a simple webpage that explains what HTML is. This webpage will have a title and a short paragraph describing HTML.
🎯 Goal: Build a basic HTML page with a title and a paragraph that explains what HTML is.
📋 What You'll Learn
Use the correct HTML5 document structure
Include a <title> tag with the text 'What is HTML?'
Add a <h1> heading with the text 'What is HTML?'
Add a <p> paragraph describing HTML as a language for creating web pages
💡 Why This Matters
🌍 Real World
Creating webpages is the foundation of building websites and web applications.
💼 Career
Understanding HTML is essential for any web developer, designer, or digital content creator.
Progress0 / 4 steps
1
Create the basic HTML structure
Write the basic HTML5 document structure including the <!DOCTYPE html> declaration, <html lang="en"> root element, and empty <head> and <body> sections.
HTML
Need a hint?

Start with the doctype declaration and open the html tag with the language set to English. Then add empty head and body tags.

2
Add the page title
Inside the <head> section, add a <title> tag with the exact text What is HTML?.
HTML
Need a hint?

The title tag goes inside the head section and sets the text shown on the browser tab.

3
Add a heading
Inside the <body> section, add a level 1 heading <h1> with the exact text What is HTML?.
HTML
Need a hint?

The h1 tag is used for the main heading on the page and goes inside the body.

4
Add a paragraph describing HTML
Below the <h1> heading inside the <body>, add a paragraph <p> with this exact text: HTML is the language used to create and structure web pages.
HTML
Need a hint?

The paragraph tag holds text content and goes inside the body below the heading.