Why this matters: This information matters because it’s a review of the basic building blocks for beginning developers, including how browsers and web pages function, and the basics of HTML, CSS, and JavaScript.
Source:https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML
Source:https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Advanced_text_formatting
1. Why is it important to use semantic elements in our HTML?
This source lists the following as some of the benefits of using semantic markup in HTML:
2. How many levels of headings are there in HTML?
There are six heading elements representing six levels of content in a document: h1 through h6.
3. What are some uses for the <sup>
and <sub>
elements?
They represent superscript and subscript, which are used for marking up items like dates (ex. 25th), chemical formulas (ex. H20), and math equations (ex. x2 = 9).
4. When using the <abbr>
element, what attribute must be added to provide the full expansion of the term?
A full expansion of a term in plain text must be provided on the first use, along with the <abbr>
element wrapped around a given abbreviation or acronym.
Source: https://developer.mozilla.org/en-US/docs/Learn/CSS/First_steps/How_CSS_is_structured
1.What are ways we can apply CSS to our HTML?
2.Why should we avoid using inline styles?
It’s inefficient when it comes to maintenance, meaning one change may require multiple edits.
it mixes CSS with HTML and content, which makes it more difficult to read and understand.
3. Review the block of code below and answer the following questions:
h2 {
color: black;
padding: 5px;
}
What is representing the selector? h2
Which components are the CSS declarations? color: black; and padding: 5px;
Which components are considered properties? color and padding
Source:https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/JavaScript_basics
1. What data type is a sequence of text enclosed in single quote marks?
A String.
2. List 4 types of JavaScript operators.
3. Describe a real world Problem you could solve with a Function.
Attempts to enter a password on a webpage or site.
Source: https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/conditionals
1. An if statement checks a __ and if it evaluates to ___, then the code block will execute.
condition; true
2. What is the use of an else if?
It allows you to have more than two choices or outcomes.
3. List 3 different types of comparison operators.
4. What is the difference between the logical operator &&
and ||
?
&&
- AND allows you to chain together 2 or more expressions so that all of them have to individually evaluate to true for the whole expression to return true.
||
- OR allows you to chain together 2 or more expressions so that one or more of them have to individually evaluate to true for the whole expression to return true.
Nothing I can think of at the moment!