HTML Review
CSS Elements
Misc.
Read and interpret
Definitions
100

Pieces of code that gives structure to an HTML page

What is HTML tags?

100

Based on RGB values. Determines the hue of an element.

What is color?

100

What are the two main instructors names? :)

Juliet and Leo!

100

font-size:20px

What is sets the font size to 20?

100

A language used to format the layout of web pages. (e.g. text styles, table sizes, or website layout)

What is CSS

200

Information added to code to ease readability. May explain or label parts of code. The computer ignores these sections.

What are comments?

200

Controls how big the words are. 

What is font-size?

200

<style>

        h3 {

          ??

}

</style>

(What type of language would go where the ?? is)

What is CSS?

200

h1 {

            font-family: "Arial";

        }


What is sets the first header font to Arial?

200

Includes the styling rules that dictates how your web page or entire web site will look.

What is a style sheet?

300

<ul>

What is the tag that creates an unordered list?

300

Defines how curved (if at all) an element's corners will be.

What is Border-Radius?

300

/* example code */

What is CSS comment?

300

<a href="www.google.com">Click Here</a>


What is the code to create a hyperlink?

300

The language that computers use to store and interpret data.

What is binary?

400

This element contains the title and meta data of your web document.

What is the <head> tag?

400

Separates elements from each other.

What is padding?

400

The <style> belongs in this section.

What is <head>?

400

border-radius: 25px;

What is rounds the edges?

400

How the computer quantifies color by specifying the intensities of red, green, and blue from 1-255 each.

What is the RGB Color Model?

500

The information that describes a coding/scripting language to its users. Helps you with built-in functionality of a coding language.

What is documentation?

500

Determines the font style (ex: Comic sans, Papyrus, Times New Roman, Arial)

What is Font-family?

500

The difference between padding and margin

What is padding controls how much extra space is within the element and margin adds extra space around an element.

500

Sets the words "example text" to be colored red. (write the code)

What is <p style=color:red>example text </p>?

or

<style>
p {
    color:red;
            }
</style>

<body>
<p> example text </p>
</body>

500

A way of implementing CSS directly into your HTML code within the starting tag.

What is inline CSS?

M
e
n
u