HTML is used mainly for
What is Web Development
This CSS property controls the color of text on a webpage.
What is color?
Python is good at this thing related to data.
What is data analysis?
What command is used to print something in the console?
What is print()?
A link that contains an address to another link.
What is A Tag?
What do you need to put in the beginning of your code for HTML?
What is <!DOCTYPE html>
This property changes the size of text, often using values like px, em, or rem.
What is font-size?
This is the correct syntax for printing something in the console.
What is print()?
Is JavaScript considered a statically typed or dynamically typed language?
What is dynamically typed?
A property used to make sure that text will fit on the screen regardless of the device.
What is Overflow Property?
The tag used to create the largest heading
What is <h1>?
This layout model allows elements to align in rows or columns and is activated with display: flex.
What is Flexbox?
This function allows developers to add explanatory notes, temporarily disable code, or create documentation without affecting the program's execution.
What is a comment?
In what year was JavaScript created?
What is 1995?
A test done on a small unit of code to test if the code works like it’s intended to.
What is Unit Test?
What does HTML stand for?
What is Hypertext Markup Language?
This CSS feature lets you apply styles only when the screen meets certain conditions, like width or height.
What are media queries?
This statement is a core control flow statement that allows a program to make decisions and execute specific blocks of code and where if one thing happens, then another happens?
What is an if..then statement.
What is JavaScript used for? Making games, making a website, or making a website interactive?
Making a website interactive.
A variable that cannot ever be changed throughout its use in code.
What is Constant?
Give an example of an HTML attribute
What is src, alt, href, ...?
This CSS rule allows one element to inherit styles from another without repeating code, using the @ symbol.
What is @import?
In the context of file management, a built-in function that adds content to an existing file.
What is Append Function?
Variables declared with this keyword are function-scoped, not block-scoped.
What is var
A line of code that calls a function and provides needed arguments for said function when applicable.
What is Call Signature?