HTML stands for ...
What is Hyper Text Markup Language?
CSS stands for ...
JavaScript is a _________________ that works alongside with HTML and CSS.
What is programming language?
The correct HTML tag for the largest heading.
What is <h1>?
The correct CSS property name to change text color.
Character that is used to indicate an end tag.
What is / (left slash)?
CSS describes the ______________ of the website.
What is styling?
Name the two ways that JavaScript is placed into HTML.
What is External JS and Internal JS?
HTML attribute for creating a link.
What is HREF?
The correct CSS property name to change font.
What is font-family?
HTML describes the ___________ of the website.
What is struture?
The characters that starts and ends a declaration.
What is squiggly/curly brackets?
The two places that JavaScript is placed within HTML.
What is under the <head> or <body> sections?
HTML tag to create a numbered list.
What is <ol>?
The character that separates the property name and the value?
What is a colon?
Name one reason why web development is important.
What is because it 1) provides individuals and businesses with the power to establish online presence, 2) provide and receive global connectivity, and 3) gain access to information and resources quickly?
What is External CSS, Internal CSS, and Inline CSS?
HTML DOM stands for ___________ and is a _______ that is constructed like a __________________.
What is HTML Document Object Model, model, and tree of objects?
HTML tag that defines navigation links.
What is <nav>?
JavaScript statements contain ______,_____,_____,______, and ______, and each statement is separated by a ________.
What is values, operators, expressions, keywords, comments, and semicolon?
An HTML attribute that displays as a tooltip when mouse hovers over the element.
What is Title?
The two elements that CSS Syntax contains.
What is a selector and a declaration?
Name one power that JavaScript HTML DOM has.
What is the power to: 1) change HTML elements, HTML attributes, and CSS styles, 2) remove HTML elements and attributes, and 3) add new HTML elements and attributes?
The correct HTML tag for inserting an image.
What is <img src="image" alt="MyImage">?
Name at least 4 JavaScript Data Types and 2 Object Data type.
What is 1)String, 2) Number, 3) Bigint, 4) Boolean, 5) Undefined, 6) Null, 7) Symbol, or 8) Object and 1) an object, 2) an array, or 3) a date?