This tag allows you to link to other pages.
What is and <a> tag?
This is used to select a class in css
What is a period?
*Also, will accept .
jQuery is a _______ of javascript
What is a library?
THIS IS THE KEYWORD TO DECLARE A VARIABLE
What is var
WHEN SOMEONE SAYS "FRONT-END WEB DEVELOPMENT", THEY ARE OFTEN REFERRING TO THESE THREE LANGUAGES.
What is HTML, CSS, Javascript
This element is used to separate the page into a different sections
What is a <div>?
*Will also accept <section>
This css property will change the background image of an element
This symbol is used to call jQuery
What is a $
THIS IS THE VOCABULARY USED WHEN YOU ADD TWO STRINGS TOGETHER TO COMBINE THEM.
What is concatentate
She is the NY Director of Workplace Learning for Code Nation
Who is Joliz Cedeno?
This is the attribute on an image tag that allows you import and image
What is src?
These name three of the four properties that make up the box model?
What is ...
Content
Padding
Border
Margin
WRITE THE CODE TO CHANGE ALL ELEMENTS OF CLASS "RED" TO HAVE BACKGROUND COLOR OF RED.
$(".RED").css("background-color", "RED");
THIS IS THE DATA TYPE OF: true
What is a boolean
WRITE A CONDITIONAL STATEMENT THAT ALERTS "SUCCESS!" IF SOMEONES WRITES "PASSWORD" IN THE AN INPUT BOX.
var USERINPUT = $("INPUT").val();
if(USERINPUT==="PASSWORD"){
alert("SUCCESS!");
}
This tag allows you to import javascript into your HTML file
What is a <script> tag?
What is the css need to center all the items within the div. Don't forget to flex your memory on this one...
div {
}
display: flex;
justify-content: center;
BASED ON THE CODE. WHAT WILL HAPPEN WHEN THE ANY ELEMENT WITH THE ID "#RUN" IS CLICKED
$("#RUN").click(function(){
$("#EMOJI").hide();
});
THE ELEMENTS WITH THE ID OF EMOJI WILL BE HIDDEN
What does this evaluate to
(1>5 && 6===6 ) || (false || 10 >= 10)
What is true?
This company was founded in 1998 by Larry Page and Sergey Brin
What is Google
What is the class of the parent container?
<div id="greetings" class="goodbyes">
<p id="hey" class="ciao">Text 1 </p>
<p id="yo" class="adios"> Text 1 </p>
</div>
What is goodbyes?
What does this css selector select?
div p {
}
All the p tags that are inside of a dive tag
WRITE IT! WRITE THE CODE THAT WOULD RETRIEVE THE VALUE OF SOMETHING TYPED IN AN INPUT BOX WITH THE ID OF USERNAME WHEN A BUTTON WITH AN ID OF "SUBMIT" IS CLICKED
$("#SUBMIT").click(function(){
$("#USERNAME").val();
});
What is logged to the console
var x = "Hi!!";
if (x === "Hi") {
console.log("Hey there");
} else {
console.log("Bye");
}
What is "Bye"!
What is logged to the console?
var a = 12;
if (a === 12) {
console.log("this");
if ((a / 4) === 3){
console.log("is");
if ( a < 12){
console.log("terrible");
} else {
console.log("awesome");
}
}
}
"this"
"is"
"awesome"