This tag is used for the largest heading on a webpage.
What is <h1> tag
This CSS property changes the color of text.
What is color?
The main page of a website.
What is the home page?
What is missing from this HTML tag to display the image correctly?
<img src ="image.jpg" alt=Description>
The " " are required
This image format supports transparency and is commonly used for logos.
What is PNG?
This tag is used to add an image to a webpage.
What is <img> tag
This CSS property changes the background of an element.
What is background-color?
The address of a website.
What is a URL?
What is wrong with the selector?
h1 { color red; }
It is missing the colon between the property name and value.
This image format is best for high-quality photos and complex color images.
What is JPEG (JPG)?
This tag creates a clickable link to another page.
What is the <a> tag
This property changes the font style/type
What is font-family?
A basic layout/blueprint of a website before it’s built.
What is a wireframe?
What is missing?
body {
background-color: lightblue
}
The semicolon
This HTML tag is used to add a video to a webpage.
What is <video>?
This tag is used to create a numbered (ordered) list.
What is the <ol> tag
This property makes the corners of a box or button round.
What is border-radius?
A short phrase that represents a brand.
What is a slogan?
What is missing?
body {
background: blue
It's missing a semicolon after the color value and a closing curly brace.
This attribute describes an image for screen readers and accessibility.
What is alt (alt text)?
This tag is used to create a table row.
What is the <tr> tag
This property adds space inside an element.
What is padding?
The way a website looks and feels to users.
What is user experience (UX)?
Find the error in the following HTML code:
<h1>Welcome to my website<h1>
What is the closing tag /
This property changes the width and height of an image in CSS.
What is width and height?