What does HTML stand for?
Hyper
Text
Markup
Language
__ tag defines the smallest and least important heading.
<h6>...</6>
You can easily embed videos into your website thanks to this widely used site.
YouTube
To change the typeface of text, you use the __ property.
font-family
__ is the space between one element and another.
Margin
What does CSS stand for?
Cascading
Style
Sheets
The __ tag makes a new line, like pressing the "enter" key when typing an essay.
Line Break Tag
In the Anchor Tag, what is the name of the attribute that holds the URL?
href
A __ color specifies different levels of RGB.
Hex Color
__ is the space between the element and the border.
Padding
There are two categories of tags, what are they?
Container Tags <></>
Empty Tags <>
True or False: Every time you code a Paragraph Tag, the output is produced on the same line.
False: The output is produced on the next line because it's a block level element.
What is a favicon?
A small image displayed next to the title in the browser tab.
The text-align property has 4 possible values, what are they?
left, right, center, justify
How do you reference a Class name in your CSS?
With a period (.)
__ means to place one tag inside of another
Nesting
A __ tag is nested inside an Ordered List and Unordered List Tag.
List Item Tag
<li>...</li>
Is the Image Tag an inline or block level element?
Inline Level Element
There are 3 ways to add CSS into our website. __ style involves placing code into a separate file that is then linked in the HTML file.
External Style
True or False: The border property takes up to 3 values.
element {
border: ???
}
True: the width, style, and color of the border
How do you write comments in HTML?
<!-- Comment Here -->
The __, __, and __ tag are nested inside the Table Tag.
<tr>, <th>, and <td> tags
The __ tag defines a thematic break in information.
Horizontal Rule Tag
<hr>
How do you write a comment in CSS?
/* Comment Here */
The padding property can take up to 4 values, each corresponding to a side. In the following example which sides do the values correspond to?
border: 5px 10px 25px
border: (top) (right&left) (bottom)