CSS
Multimedia
HTML Basics
Forms and Meta Elements
Tables
100

Add a value of a color to this attribute to change the background.

What is Background-color?

100

This attribute of the <audio> element ensures the audio starts playing as soon as it's ready.

What is autoplay?

100

This acronym describes what HTML stands for.

What is HyperText Markup Language?

100

This HTML element is used to create a dropdown menu.

What is <select>?

100

This HTML element is used to create a table.

What is <table>?

200

This CSS attribute is used to replace cellspacing, an HTML attribute.

What is Border-spacing?

200

In an SVG <path> definition, this command moves the starting point of the path to a specified coordinate without drawing a line.

What is the M command?

200

This HTML element is used to create an ordered list.

What is <ol>?

200

To restrict a text input field to accept a maximum of 10 characters, you use this attribute.

What is maxlength="10"?

200

This element is used to define a single row within a table.

What is <tr>?

300

Each of the elements added to a webpage can be styled using CSS. These are used to "find" (or select) the HTML elements you want to style.

What are (CSS) Selectors?

300

In the <svg> element, this attribute of the <animate> tag specifies how long an animation will run.

What is dur?

300

This attribute of the <img> tag specifies alternative text if the image cannot be displayed.

What is alt?

300

This value is assigned to the type attribute of an <input> element to create a password field that masks the entered text.

What is password?

300

This attribute of the <table> element defines how many rows a cell should span.

What is rowspan?

400

A Selector that can only select one HTML element.

What is an ID Selector?

400

This HTML element improves image loading performance on mobile devices by allowing optimized images to load based on screen size or resolution.

What is the <picture> element?

400

This syntax is used to add a comment in an HTML file.

What is <!-- Comment -->?

400

This meta element improves search engine optimization by briefly describing the content of a webpage.

What is <meta name="description" content="...">?

400

This attribute of the <td> or <th> element specifies the horizontal alignment of the cell’s content.

What is align?

500

With a link within the head section of the webpage you can change the look of an entire website by changing just this CSS file.

What is an external style sheet/file?

500

Which attribute of the <video> element specifies that playback controls should be displayed, such as play, pause, and volume?

What are controls?

500

This HTML element is crucial for SEO optimization as it helps search engines understand the page's topic.

What is <title>?

500

This meta element ensures a webpage is displayed correctly on devices of various sizes.

What is <meta name="viewport" content="width=device-width, initial-scale=1">?

500

This element is used to group footer rows in a table, often placed after the main body rows.

What is <tfoot>?