Full name for HTML.
What is Hypertext Markup Language?
Full name for CSS.
What is Cascading Style Sheets?
HTML creates structure.
CSS changes presentation and appearance.
JavaScript adds _____.
What is interactivity/dynamism/action? (multiple possible responses!)
The attribute on an image tag where we can verbally describe the image.
What is the alt (alternative) attribute?
A self-closing tag.
What is the <img> or image tag? (or <input />, or <br />, multiple possible responses)
It determines where the styles are being applied.
What is a selector?
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)?
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?
It is contained between curly brackets {}, that lists all of the individual styles to be applied.
What is a declaration block?
Containers that are used to store information (data) in a computer program
What are variables?
The value that represents true or false.
What is boolean?
Additional information added to HTML elements, structured as a name and a value.
What is an attribute? (What are attributes?)
Individual styles are made up of a ____ and a corresponding value.
What is property name?
Type of programming language whose work is done by having objects that different actions – or methods – are called on.
What is an object-oriented programming language?
The conditional statement that checks whether a condition is true and runs a set of code in the case where it is.
What is the if conditional statement?
The three HTML tags we would use if added to a project both types of lists that are possible in HTML .
What are <ul>, <ol>, and <li> tags?
The three main ways to select HTML elements to apply CSS Styling
What is selecting by element tag names, class attributes, and id attributes?
A very common way to use the DOM to find a particular element by its id.
What is the method getElementById?
Keyword(s) to check another condition if the previous condition is false.
What is else if?