HTML Basics
Text & Structure
Images & Links
Lists & Tables
Inline Styling
100

What section of a webpage contains the visible content that users see?

What is the <body> section?

100

This page is used for a normal paragraph of text.

What is <p>?

100

This attribute tells a hyperlink where to go.

What is <href>?

100

This kind of list shows bullet points.

What is an unordered list <ul>?

100

This style changes the background color of an element.

What is background-color?

200

Fill in the blank — <_____>My Page</_____> defines the title of the webpage.

What is <title>?

200

This is the smallest heading size.

What is <h6>?

200

Fix the image code — <img source="cat.png">

What is <img sir ="cat.png">?

200

This tag creates a numbered list.

What is <ol>?

200

Coding: Fix the mistake — <p style="color blue;">Hi</p>

What is <p style="color: blue;">Hi</p>?

300

This coding language provides color, fonts, borders, backgrounds, and alignment to webpages.

What is CSS?

300

Fix the mistake: <i>Italic text</b>

What is <i> and </i>?

300

These two attributes control the size of an image.

What is width and height?

300

Fix the mistake: <ul><li>Item 1<li>Item 2</ul>

What is <ul><li>Item 1</li><li>Item 2</li></ul>?

300

Name any two border styles besides “solid.”

What are Dotted, dashed, double, groove, ridge, inset, outset?

400

HTML stands for this.

What is hypertext markup language?

400

This element creates a new line break.

What is <br>?

400

Write an HTML link that opens Google.

What is <a href="www.google.com">

400

This creates a horizontal section of a table.

What is <tr>?

400

 Add a red 2px border to this: <div>Box</div>

What is <div style="border: 2px solid red;">Box</div>?

500

Write the opening and closing tag that wraps the entire webpage.

What is <html> and </html>?

500

This element allows you to add a comment to your code.

What is <!-- comment -->?

500

Fix the mistake: <img src="dog.jpg" width="200 height="200">

What is <img src="dog.jpg" width="200" height="200">

500

This element allows you to add data to your table.

What is <td>?

500

Fix the mistake: <button onclick="alert(Hello!")">Click</button>

What is <button onclick="alert('Hello!')">Click</button>?

M
e
n
u