This HTML tag is the container for all other HTML elements
what is <html>
These two letters represent the size of anything on html
what is px
______ in HTML begin with <!-- and ends with -->. A ______ is a piece of code which is ignored by any web browser.
what are Comments
The tag defines the main content of the HTML document that will be directly visible on your web page.
what is <body>
In order to write in your CSS you must put ______:_______
what is property and value
Specifies an alternate text for the image, if the image for some reason cannot be displayed.
what is alt
the symbol to tell the computer to end your code. This is in the html tag
/
This tag is used to create different sized section titles throughout a web page.
what is heading or h1
What do you put to make your background color?
body { background-color: blue;
}
What three things can you change about an images border?
style, color, width
List three of the border styles
solid, dashed, dotted, double, groove
The div tag divides the HTML document into sections of content.
what is <div>
this word is used to link your style sheet to the html
______="style.css">
what is href
Specifies the path to the image
what is src
This tag is used to link links to a webpage
<a>
This tag tells the browser what version of HTML the page is written in.
what is <!DOCTYPE>
What follows rel"______________" in order to link your CSS in your HTML
stylesheet
You use this three letter word to insert a image as a background. background-image: _?_'img_dog.jpg');
url
What is the CORRECT order of the margins four sides? (example: top, middle bottom, left, right) margin: ______, _____, _______, ________
top, right, bottom, left