HTML Elements
CSS
Terminology
Logic
Wildcards
100

What the "p" tag stands for?

Paragraph

100

What does the CSS "input {}" affect?

Every element that is an <input>

100

What does HTML stand for?

Hypertext Markup Language

100

Is <h1> or <h6> the biggest default header element?

<h1>!

100

What terms can be used to explain HTML and CSS?

The bones/skeleton and the skin/looks (flexible)

200

What does the "h2" tag mean?

The second-biggest default header

200

What does the CSS ".input {}" affect?

Any element with the class "input"

200

What is an element / tag?

Anything that is surrounded by "<" and ">", they're part of the HTML

200

If you wanted to add a button to a website. Where would you put it? In the CSS, or HTML?

the HTML!

200

What is the default structure of an HTML file?

<html>

<head></head>

<body></body>

</html>

300
What does the <br> element do?

Adds a line break in text

300

What does "display: flex" do?

Makes it easier to style an element, allows you to center stuff, make it into rows, columns, etc.

300

What is a "class"?

Something you can use to apply CSS styles to an element
300

Can you put elements inside of other elements? Like p tags inside of divs? Why would you do that?

Yes! To group things together and apply styles/css to things that are related

300

What is the CSS line to change the background of an element?

"background-color: [color]"

400

How do you add an image to a website? How do you link it?

<img src="">

400

What is the CSS line to change the text/font size of something?

"font-size: [size]px"

400

What is a container or parent element?

An element that you put other elements inside to group. For example, a navigation bar that you add buttons in a row to.

400

If the CSS is as follows, what will be the color of the text?

p {color: blue}

.p {color: red}

<p class="p">Hello!</p>

Red
400

What is the CSS term for a text element's font?

font-family
500

What is a type of element you can't put other elements within it?

<br> <img> (or any other one that isn't listed here)

500

How do you link a CSS file into the HTML?

<link rel="stylesheet" href="[filename].css">

500

What is a child element?

An element that is inside a parent element or container element

500

What if you have two property names (like color: blue and color: red) in the same CSS block, how do you know which one will actually become the color of the text?

The last one is the one that affects the text

500

What is the attribute name to add text inside a input element before a user types in it (to indicate what they're supposed to type)

placeholder="bla bla"

M
e
n
u