HTML Skeleton
Text & Headings
Know your tags
CSS Styling
Tools & Vocab
100

True or False: The head section is visible on the page.

False


100

True or False: </p> is an opening tag.

False - it's a closing tag

100

This HTML tag is used to create a hyperlink.

<a> or <link>

100

Used to control how a website looks.

CSS

100

What specific code editor did we use?

Visual Studio Code

200

You need this at the end of your file name.

.html

200

This tag is used to create a paragraph.

<p>

200

True or False: HTML tags always come in pairs.

False 

there are some self closing tags like <input/> or <br/>

200

This CSS property changes the text color.

color

200

This is a specialized location to store and manage your code.

repository or Github

300

This tag holds all visible content of a page

<body>
300

This element represents the largest heading.

<h1>
300

This tag is used for inserting an image.

<img>

300

This CSS property changes the background color.

background-color

300

True or False:  .header is used in css to change all elements that have the tag <header>

(False).header will only change the elements that have the class attribute of ".header" 

400

What does HTML stand for?

HyperText Markup Language

400

True or False: Every HTML document heading is h1-h7.

False h1-h6

400

True or False: <img> needs a closing  tag.

False <img/> is a self closing tag

400

This is an attribute used in HTML to group and style one or more elements with the same set of styling rule

class

400

This is something in the element's tag that holds additional information about an HTML element, modifying its appearance, behavior, or functionality 

html attribute

500

Every HTML document starts with this tag.

<!DOCTYPE html>

500

This tag controls the name that is displayed on the browser tab.

<title>

500
This tag is used when making an ordered list

<ol>

500

What does CSS Stand for?

Cascading Style Sheets

500

Double Jeopardy Question! [Final Question Only]

To change the background of your entire webpage to blue, you must first ensure your content is wrapped in this specific visible-container tag, and then apply this exact CSS property inside your stylesheet.

The <body> tag and the background-color property