HTML Text Fundamentals. HTML Advanced Text Formatting.
Why is it important to use semantic elements in our HTML?
How many levels of headings are there in our HTML?
What are some uses for the <sup>
and <sub>
elements?
When using the <abbr>
element, what attribute must be added to provide the full expansion of the term?
What are ways we can apply CSS to our HTML?
Why should we avoid using inline styles?
Review the block of code below and answer the following questions:
- What is representing the selector?
- Which components are the CSS declarations?
- Which components are considered properties?
h2 {
color: black;
padding: 5px;
}
Continue reading JavaScript Basics. Start at “Comments” and read through “Events” section.
What data type is a sequence of text enclosed in single quote marks?
List 4 types of JavaScript operators.
Describe a real world Problem you could solve with a Function.
Making Decisions In Your Code - Conditionals.
An if statement check a __ and if it evaluates to ___, then the code block will execute.
What is the use of an else if
?
List 3 different types of comparison operators.
What is the difference between the logical operator &&
and ||
?