
Welcome to HTML Basics by ColorCode.io. I will show you the basics of HTML in 11 short videos, specially designed for people with little to no coding experience. In this video, I will go over the course material and what you can expect to get out of it.
HTML Elements are the smallest building blocks of every website, it's that simple. In this video, I teach you about different kinds and show you how to make one.
The DOM is a powerful place where you can add, remove, and manipulate HTML elements. This whole family tree of elements is sometimes referred to as the DOM (Document Object Model). In this video, I show you an easy way to think about the DOM.
Different elements have different Display Types. But what is a display type and why does it matter? In this video, I show you the three most common Display Types used in HTML elements and when to use which one.
If you want your elements to 'do stuff' rather than just 'look' a certain way, you can use attributes to add functionality and behavior to them. In this video, I show you how to define an attribute and how to add it to your elements.
Demo time!!! Let's put all these concepts together and create a demo. Time to write some code!
There are many ways to write build an HTML page that may look the same, but under the hood, the code can be significantly better or worse. In this video, I introduce you to the idea of HTML Semantics that will take your code and elevate the quality.
Demo time!!! HTML Semantics is so important that before we go any further, we need to look at a few examples of why Semantics can elevate your code to a higher quality.
In this video, I show you a few simple tips and tricks to help you build more interesting pieces alongside everything else we have learned together.
Everything we have looked at together so far belongs in the BODY tag, which is where all the visible stuff goes. In this video, I show you an entirely different tag dedicated for all the invisible stuff!
In the last video of this course, I walk you through Selectors, the last concept we need before we can wrap up HTML and start talking about CSS. This is a critical step in our understanding of the DOM and how to connect other pieces of code into your HTML.
HTML is so important and yet so simple to learn. Usually, simple basic stuff isn’t that useful but that’s not the case with HTML. It is a great first language for anyone.
HTML is nothing but a text file. It’s the foundation of every web application. It’s the skeleton and the structure of your page. It’s the entry point of every app. This means every time someone goes to your site the HTML file is the very first thing that the browser loads for them, before anything else, images, colors, words, buttons.
So in this course we’re going to make multiple pages together. We’ll be working with a version of HTML that’s called HTML5. Let's do it.