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.
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.
What keyword do we use in JS to define a function?
function
What former One Direction member released a new album last week? (and its really good imo)
Harry Styles <3
What COMMAND/RULE NAME (lhs in CSS) do we use to move items along the CROSS axis?
align-items
Write one line of code to create the LARGEST header possible on a webpage that says "About Me"
<h1>About Me</h1>
Unlike Python, we don't use indentation to structure JS... what do we use instead?
Curly braces: {}
How do you spell the name of the dinosaur that could fly...
pterodactyl (or pterodactylus formally)
When you precede a CSS ruleset with . (i.e. ".container-1"), which items are we selecting to style?
Any items in that CLASS
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>
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?
Jess Day, Nick Miller, Winston Bishop and Schmidt are all characters on what TV show?
New Girl
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
What is an attribute, and which attribute would we use for an <img> tag?
Ex. <img src="..."></img>
Write a function called sayHello that, when ran, makes an alert pop up on the users screen that says "Hello!".
function sayHello() {
alert("Hello!");
}
What is the name for the plastic or metal tube found on the ends of shoelaces?
An aglet
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;
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.
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>
What do you call a group of flamingos?
A flamboyance