"Bare Bones"
HTML
CSS
Text
Miscellanious
100





What is the name of a basic HTML element?
Tag
100





What HTML tag is used to create a paragraph?
p
100





What is the main purpose of CSS?
Styling (e.g. color, font face/style, positioning)
100





Which heading will produce a smaller font size, h1 or h6?
h6
100





What do "CSS" and "HTML" stand for?
Cascading Style Sheets
HyperText Markup Language
200





What essential tag will hold the majority of a website's content?
Body
200

What four tags are required in every HTML page?


html, title, head and body

200

                            #logo

This rule applies to the single HTML element with the

_____ “logo”


id

200





How is font size normally measured?
Pixels (px)
200





What is the file extension for an HTML document?
.html
300





What is the difference between an HTML opening tag and a closing tag?
Closing tag has a '/'
300

Set the height property for all images to be 200 pixels.


height: 200px;

300





What character (e.g. 'a' or '^') goes at the end of every CSS declaration?
Semi-colon (;)
300





What property would you change to make a font italicized?
Font Style
300





What is the file extension for an external CSS style sheet?
.css
400

A horizontal rule across the page.

 <hr> tag

400

  Lets you annotate text to define how it should be displayed.



Markup Language

400





The background color of a whole page can be changed by editing this CSS selector.
Body
400





What property would you change to make a font bold?
Font Weight
400

<style>

    a {

        color: blue;

    }

    .alert {

        color: red;

        font-size: 20px;

    }

</style>

A______style overrides tag style in the case of a conflict





class

500


What is the term for the "grammatical structure" in which HTML and CSS are written?

Syntax

500

What is the name of the tag used to create hyperlinks?



Anchor Tag

Also called just the "a" tag.

500

Name one of the three "elements" in a CSS rule? E.g. h1{color: orange;}

Selector, Property, Value

500

This means that one element can be placed inside another element. Which allows you to apply multiple HTML tags to a single piece of content. (  or tags inside of other tags)






Nesting

500

CSS can be applied to a website in three ways. Name two of them.

External, Internal/Embedded, and Inline.