Add a value of a color to this attribute to change the background.
What is Background-color?
This attribute of the <audio> element ensures the audio starts playing as soon as it's ready.
What is autoplay?
This acronym describes what HTML stands for.
What is HyperText Markup Language?
This HTML element is used to create a dropdown menu.
What is <select>?
This HTML element is used to create a table.
What is <table>?
This CSS attribute is used to replace cellspacing, an HTML attribute.
What is Border-spacing?
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?
This HTML element is used to create an ordered list.
What is <ol>?
To restrict a text input field to accept a maximum of 10 characters, you use this attribute.
What is maxlength="10"?
This element is used to define a single row within a table.
What is <tr>?
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?
In the <svg> element, this attribute of the <animate> tag specifies how long an animation will run.
What is dur?
This attribute of the <img> tag specifies alternative text if the image cannot be displayed.
What is alt?
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?
This attribute of the <table> element defines how many rows a cell should span.
What is rowspan?
A Selector that can only select one HTML element.
What is an ID Selector?
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?
This syntax is used to add a comment in an HTML file.
What is <!-- Comment -->?
This meta element improves search engine optimization by briefly describing the content of a webpage.
What is <meta name="description" content="...">?
This attribute of the <td> or <th> element specifies the horizontal alignment of the cell’s content.
What is align?
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?
Which attribute of the <video> element specifies that playback controls should be displayed, such as play, pause, and volume?
What are controls?
This HTML element is crucial for SEO optimization as it helps search engines understand the page's topic.
What is <title>?
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">?
This element is used to group footer rows in a table, often placed after the main body rows.
What is <tfoot>?