What CSS stands for
What is Cascading Style Sheet?
The shortcut to add in all formatting at the top of a document
The number of Heading sizes there are.
What is 6?
Background Color
What is "background-color: '######';"?
The first line in every document
What is "<!doctype HTML>"?
What is the formula for a button that goes to google?
What is "<button onclick="window.location.href='https://google.com'">Google</button>"?
The tag to make a new line in text
What is <br>?
Font Color
color: ######;
This tag goes at the top of the window in Safari.
<video controls width=#### length=####">
<source
src="media/video name.mp4"
type="video/mp4">
</video>
The tag to add a horizontal grey line through your text
What is <hr>?
Font Type
font-family: FONT;
This tag defines the main part of your code.
What is Body?
The tag to make a form
<form>
</form>
The tag to highlight text.
What is "<mark></mark>"?
How you center an image in CSS
body img{
display: block;
margin: auto;
}
This tag divides your code into more understandable pieces.
What is "div"?
The way to make a "select" input field in a form.
<select>
<option>option 1
<option>option 2
<option>option 3
<option>option 4
</select>
The two ways to make text bold.
<strong></strong> and <b></b>