HTML Introduction

There is no CSS on this page, we will get to that later




What is HTML?

HTML(Hypertext Markup Language) is the skeleton of your webpage, it will be where you type the most important information that will make up the webpage that you create. Without HTML your webpage would never be able to take shape, just like if I took your bones you would be all meat and no bones... Anyways as I was saying, HTML holds all of the most important information, it will hold your paragraphs of text, the images and links you use. It will also contain the information the browser will need, like the lanugage or the document type.

Notes Prior to Starting

A common joke in the coding fields is, "Don't reinvent the wheel", I have no idea where this came from but it definetly is something to note. In HTML, CSS, and jQuery, there is a lot of repetition, so for a future note, I'd recommend making a template for yourself that you may use later on(on Index.html I actually used my own template and the first 4 intro pages are direct copies of index.html). If I remember to link my template, I will, odds are I will forget(edit: it's in part 0) :/

Getting Started

There are many different tags in HTML, and I mean a LOT! But they are all pretty straight forward and simply require a small amount of memorization.

How do the Tags work?

In theory, it is simple. You open that tag with whatever then close it shortly after. For example, you would open a paragraph tag with < p > then you would type whatever you want, then you would close the tag with < /p >
< p > This is an example < /p >
You can also add onto the tags info by typing within the first tag!
< p class="bob" height="100px" > This is another example< /p >



There are some more tags you can go find out there if you want to go research it, I would recommend something like W3 school for reasearching. Like how I never talked about the < table > tag due to how I just dont like it, it's annoying or the lists tag which are a little complicated.

Just to make it easy, here are some things you could look for: Text Inputs, Buttons, Lists, Tables.