HTML Basics
Text and Links
Images and Tables
CSS and Web Viewing
100

What does HTML stand for?

What is HyperText Markup Language

100

Which tag is used to create a paragraph in HTML?

What is the <p> tag

100

What tag is used to display an image in HTML?

What is the <img> tag

100

What does CSS stand for?


What is Cascading Style Sheets?

200

What tag is used to create the main structure of an HTML page?

What is the <html> tag

200

What attribute is needed to create a link in an <a> tag?

What is the href attribute?

200

Which attribute is used to specify the path of an image file in the <img> tag?

What is the src attribute

200

Which symbol is used to select an ID in CSS?


What is the # symbol

300

Which tag is used to define the title of an HTML document that appears on the browser tab?

What is the <title> tag

300

How do you make text bold in HTML?

What is the <b> or <strong> tag

300

Which tag creates a table in HTML?

What is the <table> tag

300

What is the difference between http and https?

What is https indicates a secure website

400

Name two tags that are required for an HTML document to function properly.

  • What are <html> and <body>
400

What tag would you use to italicize text?

What is the <i> tag

400

How do you add a table heading?

What is the <th> tag

400

How do you select an HTML element by its class in CSS?

What is the . symbol

500

In which section of an HTML document is metadata placed?

What is the <head> section

500

hat tag would you use to make text appear as a heading, specifically a medium-sized one?


What is <h3>

500

What tag is used to define a table row?

What is the <tr> tag

500

Which CSS selector has the highest specificity: ID, class, or tag?


What is the ID selector