reading-notes

Reading notes - 02

The topic covered in todays reading material matters because it covers some basic concepts of JavaScript, CSS and HTML. From symantics to if..else statements, they all have their place and function to help bring a webpage to life while making it easier for the developer to read and troubleshoot if needed.

Introduction to HTML

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

2. How many levels of headings are there in HTML?

4. What are some uses for the sup and sub elements?

5. When using the abbr element, what attribute must be added to provide the full expansion of the term?

How CSS is structured

1. What are ways we can apply CSS to our HTML?

2. Why should we avoid using inline styles?

3. Review the block of code below and answer the following questions:

Learn JS

1. What data type is a sequence of text enclosed in single quote marks?

2. List 4 types of JavaScript operators.

3. Describe a real world Problem you could solve with a Function.

Making decisions in your code - Conditionals

1. An if statement checks a __ and if it evaluates to ___, then the code block will execute.

2. What is the use of an else if

3. List 3 different types of comparison operators.

4. What is the difference between the logical operator && and ||?