Course 1: Webpages, Documents, and Structure

This was my introduction to the world of coding. I wrote some simple HTML and CSS to make static web pages. I was first introduced to the principle of 'Don't Repeat Yourself' in this course when I started using HTML classes and CSS styling to make similar HTML elements look the same.

Lesson 1: The Basics of the Web and HTML

The internet is a bunch of computers communicating over HTTP

Lesson 2: Creating a Structured Document with HTML

How elements within elements creates a structured 'box-like' model of a web page.

Lesson 3: Adding CSS Style to HTML Structure

By giving similar HTML elements the same 'class', we can write all the styling for that class just ONCE and it will apply to every element.