reading-notes

Reading notes - 01

The topics covered in today’s reading material matters because as web developers-in-training we need to know not only what we’re doing, but the why and how behind it. In learning the why and how we’ll be able to better connect the dots as to the cause and effect when writing code as well as the reason for the structure as it’s developed through the years.

How the Internet works

1. Compose a short poem describing how HTTP sends data between computers.

2. Describe how HTML, CSS, and JS files are “parsed” in the browser.

3. How can you find images to add to a Website?

4. How do you create a string vs a number in JavaScript?

5. What is a variable and why are they important in JavaScript?

Introduction to HTML

1. What is an HTML attribute?

2. Describe the Anatomy of an HTML element.

3. What is the difference between article and section element tags?

4. What Elements does a “typical” website include?

5. How does metadata influence Search Engine Optimization?

6. How is the meta HTML tag used when specifying metadata?

How to start designing a Website

1. What is the first step to designing a Website?

2. What is the most important question to answer when designing a Website?

Semantics

1. Why should you use an h1 element over a span element to display a top level heading?

2. What are the benefits of using semantic tags in our HTML?

What is JavaScript

1. Describe 2 things that require JavaScript in the Browser?

2. How can you add JavaScript to an HTML document?

Things I want to know more about