HTML
CSS
JavaScript
jQuery
Git and the Web
100
What does the "p" in the p tag stand for?
paragraph
100
What is the name of this symbol {
Curly Bracket
100
The word is used to declare a variable
var
100
This symbol is used to "call" jQuery
$
100
_____ Is a website we use to save, share and collaborate our code.
GitHub
200
What does the "ul" stand for in the ul tag?
unordered list
200
This symbol is used to select an ID
#
200
The type of statement includes words like 'if" and "else"
conditional statements
200
This jQuery function will make an element not appear on a page
.hide()
200
Google Chrome and Safari are examples of ...
Web Browsers
300
this tag holds the content that is not seen on the HTML page
What is the head tag?
300
This symbol is used to select a class
. (period)
300
How many parameters does this function have? function (a,b) { do stuff }
two parameters a and b
300
If you would like to select a p tag with the id "myTag" using jQuery how would you do so?
$("#myTag")
300
This git command is used to check how our code differs from the code in the GitHub repo we cloned from
git status
400
This is the first line of code on every HTML page
!DOCTYPE html (must go in between angle brackets)
400
This CSS property allows an element to be placed on the right or left of a page.
Float
400
This function is used for debugging and prints data to the console
console.log();
400
jQuery is a ______ of JavaScript
Library
400
This GitHub feature allows you to make your own branch of someone else's repo so that you can make change to it without changing their code.
Forking
500
HTML stands for....
Hyper Text Markup Language
500
This CSS property and value pair allow an element to stay still on a page while it is being scrolled.
position: fixed;
500
How will this string appear in the console? console.log("ScriptEd" + "rules!")
ScriptEdrules
500
We use this function to let our script.js document know we are using jQuery
$(document).ready(function(){ });
500
When someone says "front-end development" they are often referring to these three languages.
HTML, CSS and JavaScript
M
e
n
u