CSS
HTML
JavaScript
Random!
100

What are we referring to when we talk about the main and cross axis?

WHAT IS in a flex box, the x and y axis respectively. Aka lets us move items around our flex box freely rather than the default left aligned stack.  

100

What are tags in HTML? (Syntax and purpose)

<tagname></tagname>

They wrap content and are used to define and structure elements on a web page.

100

What keyword do we use in JS to define a function?

function

100

What former One Direction member released a new album last week? (and its really good imo)

Harry Styles <3

200

What COMMAND/RULE NAME (lhs in CSS) do we use to move items along the CROSS axis?

align-items

200

Write one line of code to create the LARGEST header possible on a webpage that says "About Me"

<h1>About Me</h1>

200

Unlike Python, we don't use indentation to structure JS... what do we use instead?

Curly braces: {}

200

How do you spell the name of the dinosaur that could fly...

pterodactyl (or pterodactylus formally)

300

When you precede a CSS ruleset with . (i.e. ".container-1"), which items are we selecting to style?

Any items in that CLASS

300

What does it mean for a tag to be non-semantic? What's an example of one?

A non-semantic tag in HTML is a tag that does not describe the meaning or purpose of its content. Instead, it is mainly used for layout or styling.

Ex. <div>

300

Where do we write the JavaScript in our HTML file? How do we let our computer know to read the code as JS and not HTML?

We write JS within an opening and closing <script> tag, which goes at the END of our <body> (still within <body> though, not after).
300

Jess Day, Nick Miller, Winston Bishop and Schmidt are all characters on what TV show?

New Girl

400

What does C in CSS stand for, and what do we mean by that?

Cascading, since styles can be layered, and the most specific style wins

400

What is an attribute, and which attribute would we use for an <img> tag?

Extra information that our browser needs to display certain elements, defined in the opening tag of the element.


Ex. <img src="..."></img>

400

Write a function called sayHello that, when ran, makes an alert pop up on the users screen that says "Hello!".

function sayHello() {

alert("Hello!");

}

400

What is the name for the plastic or metal tube found on the ends of shoelaces?

An aglet

500

Write 3 lines of CSS (excluding selector and curly braces) to place an item in the middle of a flex-box.

display: flex;
justify-content: center;
align-items: center;

500

What is the difference between the <head> and <body> sections of our HTML file? What typically goes inside of the <head> section? And what about for the <body>?

The <head> section contains information about the webpage that isn’t shown on the page, such as the title, metadata, and links to stylesheets or scripts. The <body> section contains all the content that users see on the page, like text, images, links, and buttons.

500

Create a button in HTML labeled "Change Color", and connect it to a function called changeColor (assume you have already defined the function in JS).

<button onClick="changeColor()">Change Color</button>

500

What do you call a group of flamingos?

 A flamboyance