- Intro to HTML -
Think of HTML as the building block that lays down the structure for the website.
Each HTML document is divided into sections and each of these sections has a name, or a "tag."
These tags specify what type of text will go there and separates the different types.
Here is a basic outline of an HTML document:
1. !DOCTYPE html simply tells the computer that this is an HTML document
2. The head tag actually won't display any text, it only contains information about your webpage
For example, whatever goes in the title tag will be the text in a new tab
3. Now, the body contains, well, the actually body or content of the webpage
4. Here, we have an h1 tag, which will make the text that goes inside of it appear as a large header
6. Next, we have a p tag, which stands for "paragraph" text, so just basic text
5. Now, we have a div, which is a
This will be what your website looks like once you open it up!