Which tag holds the content that is seen on the web page?
<body>
Which symbol is used to select a class in CSS?
Period (.)
Which process allows you to design a website before building it?
Wireframing
Which symbol is used to "call" jQuery?
Dollar Sign ($)
Which 3 languages do Code Nation's Into to web Development students learn?
HTML, CSS, and JavaScript
What are JavaScript and Python examples of?
Programming Languages
Which tag holds the meta information that is NOT seen on the web page?
<head>
Which CSS property changes the color of text?
color
Which CSS property defines the space between elements?
margin
library
Which coding environment is used to write HTML, CSS, and JavaScript in Code Nation's Into course?
Popcode
Who created the social media platform Facebook while studying at Harvard University?
Mark Zuckerberg
What helps add specificity to html tags?
Hint: anchor and image tags require them.
attributes
When writing CSS, what selects the part of the page we want to change?
The Selector
What collection of CSS properties allow you to align and organize HTML elements on a page?
Flexbox
Which jQuery action makes elements on the page invisible?
.hide()
What is next year's coding class at Code Nation called?
Fellowship
What was the first popular video game?
Pong
Which attribute is used when creating an image tag?
source (src)
Which two CSS properties allow you to resize elements?
width and height
Which CSS property and value must be given to the parent element to enable flexbox layout?
display: flex
display (property) & flex (value)
Which of these jQuery expressions will make the text color of all the paragraph elements blue?
1. $("p").attr("color", "blue");
2. $("p").css("blue", "color");
3. $("p").css("color", "blue");
4. $("p").css("text", "blue");
3. $("p").css("color", "blue");
DAILY DOUBLE!
In addition to the Bay Area, where else is Code Nation located?
New York and Chicago
What does "WWW" stand for?
World Wide Web
Which tag can be used as a container for anything on a page?
<div>
Which CSS style takes three values specifying size, style, and color?
border
The ______ model allows to define and style HTML elements.
box
$(".my-reply").text("Hello!");
In this code, what do we call "Hello"?
argument / parameter
Who founded Code Nation in 2012
Maurya Couvares
Who was the first computer programmer?
Ada Lovelace