True or False: The head section is visible on the page.
False
True or False: </p> is an opening tag.
False - it's a closing tag
This HTML tag is used to create a hyperlink.
<a> or <link>
Used to control how a website looks.
CSS
What specific code editor did we use?
Visual Studio Code
You need this at the end of your file name.
.html
This tag is used to create a paragraph.
<p>
True or False: HTML tags always come in pairs.
False
there are some self closing tags like <input/> or <br/>
This CSS property changes the text color.
color
This is a specialized location to store and manage your code.
repository or Github
This tag holds all visible content of a page
This element represents the largest heading.
This tag is used for inserting an image.
<img>
This CSS property changes the background color.
background-color
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"
What does HTML stand for?
HyperText Markup Language
True or False: Every HTML document heading is h1-h7.
False h1-h6
True or False: <img> needs a closing tag.
False <img/> is a self closing tag
This is an attribute used in HTML to group and style one or more elements with the same set of styling rule
class
This is something in the element's tag that holds additional information about an HTML element, modifying its appearance, behavior, or functionality
html attribute
Every HTML document starts with this tag.
<!DOCTYPE html>
This tag controls the name that is displayed on the browser tab.
<title>
<ol>
What does CSS Stand for?
Cascading Style Sheets
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