reading-notes

Code Fellows 201

Day 03 Notes

Home

Continue Reading Introduction to HTML

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 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

How CSS Is Structured.

What are ways we can apply CSS to our HTML?

You reference an external CSS stylesheet from an HTML <link> element:

Why should we avoid using inline styles?

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

h2 { color: black; padding: 5px; }

What is representing the selector?

Which components are the CSS declarations?

Which components are considered properties?

Learn JS

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 checks a EXPRESSION and if it evaluates to TRUE, 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 ||?

Bookmark and Review https://chris.beams.io/posts/git-commit/