reading-notes

Class 2

Back to home page

Continuing intro to html

Why is it important to use semantic elements in our HTML?

How many levels of headings are there in 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?

Learn css

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:

  1. What is representing the selector?
  1. Which components are the CSS declarations?
  1. Which components are considered properties?

Learn js

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

An if statement checks a condition and if it evaluates to true, then the code block will execute.

What is the use of an else if statement?

List 3 different types of comparison operators.

What is the difference between the logical operator && and   ?