What does HTML stand for?
Hypertext Markup Language
What is the current version of HTML?
HTML 5
How do you change the color of a background?
background-color: (color);
What element is typically used for the main title of the website?
The <H1> tag
What's missing in this css block?
P{
Color: blue
background-color: Yellow
}
Semicolin after each property
What does URL stand for?
Uniform Resource Locator
This is where you put your css stylesheets.
The <head> tag
What css property changed size of a text?
Font-Size
What element do you use for large bodies of text?
The <p> tag
What's wrong with the following css?
body{
Backgroundcolor: Orange;
Color: White;
}
Background-Color needs a dash
What does CSS stand for?
Cascading Style Sheets
The tag used to create a hyperlink?
The <a> tag
What properties separates an element from other elements on a webpage?
Margin
How many different sized header elements are there in html?
6
What's wrong with the following html?
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed aliquet ante mollis, dapibus neque et, imperdiet felis. <p>
The end tag is missing a slash </p>
What does JPEG stand for?
Joint Photographic Experts Group
This tag is used to create a horizontal line.
The <hr> tag
What is the css selector for all images on a webpage?
Img
What attribute is used in an image tag to provide the image address?
SRC
What's wrong with the css that should change the text for h1 h2 and paragraph elements?
h1 h2 p{
Color:blue;
Text-shadow: 2px 2px #FF0000;
}
Needs commas between the selectors:
H1, H2, P
What does PNG stand for?
Portable Network Graphics
The tag used to created a bulleted list.
The <ul> tag and <li> tag
What is the css selector for the class of "specialclass"
.specialclass
What attribute in the anchor tag is used to provide the address?
HREF
What is wrong with the following html?
<a> <img src="image.png"></a>
The anchor tag is missing HREF
<a href="google.com"><img src="image.png></a>