HTML
Hyper-Text Markup Language is what it stands for, but what is it really?
Well it is the bones of any website. You can write JavaScript, and CSS till the cows come home but if you don't have a way to display their effects they are meaningless. HTML isn't just what you see on the page either.
This tag needs to be at the top of every .html document. It sets the language type of html for the document. This has no closing tag like most of the other tags.
Here we are essentially stating that inside these html tags we will be using the english language and it will contain all of our html elements
This tag or secton of code that is contained with in it isn't shown on the web page but is quite important. That tab in your browswer rightnow that shows the title of this note is set inside this tag, Google uses this tag to better provide you with search results. When developers use a meta tag in side it they can set search terms which is what Google uses. A lot can go in here.
This section is where you will be working most of the time. The content here is what shows up on your webpage. It will contain various other tags to format how you want to display your content.
The first thing to notice that changed is we are using 3 different ways to add styling to our document.
Next you see a script tag inside the head section. This is where you can add JavaScript funcitons that might be used in this document. However you can also link a script.js file here as well.
Just what are these mysterious things and how do we use them?