Full name for HTML.
What is Hypertext Markup Language?
Full name for CSS.
What is Cascading Style Sheets?
JavaScript is a language used to create ____ within a web browser.
What is interactivity?
This attribute is where we can verbally describe the image.
What is the alt (alternative) attribute?
Example of a self-closing tag.
What is the <img> or image tag?
A # is used to reference these.
What are id attributes?
These are used to store information (data) and can be modified in a program.
What are variables?
Using a ______ ensures that the colors you are using are clear and visible for all users.
What is a Color Contrast Checker?
The ___ tag is what shows up as the name of the webpage and is important to all HTML documents
What is title?
Dot notation is used to reference these.
What are class names?
A very common way to use the DOM is to find all elements of a given type or class name, or to find a particular element by its id.
What is the method getElementById?
The conditional statement that checks to see if a condition is true. If it is true, then the computer runs a set of code.
What is the if conditional statement?
Additional information of HTML elements that have a name and a value.
What is an attribute? (What are attributes?)
It is contained between curly brackets {}, that lists all of the individual styles to be applied.
What is a declaration block?
A tree structure that enables JavaScript to add, modify, and remove HTML elements, tag attributes, and CSS styles by referencing their location in the tree.
What is the DOM (Document Object Model)?
The value that represents true or false.
What is boolean?
HTML tags used to create a navigation bar.
What are <ul>, <ol>, and <li> tags?
It determines where the styles are being applied.
What is a selector?
Type of programming language whose work is done by having objects that different actions – or methods – are called on.
What is object-oriented programming language?
Keyword to check another condition if the previous condition is false.
What is else if?