Stage 0 Notes

The World Wide Web

The major pieces of the web are:

The request for a web page is sent from the client computer, via a HTTP request, to the Server computer.
HTTP is the protocol to exchange or transfer hypertext. see wikipedia definition..
The Server responds by returning the requested web page file(.html) and any other files requested or required to build the web page.
The client's browser reads and inteperets the files and associated data, builds, and displays the web page.

Internet Architecture
Fig. 1 Image is courtesy of www.tutorialspoint.com

HTML document

The World Wide Web is a collection of HTML documents.
HTML stands for HyperText Markup Language and is the most widely used language to write Web Pages.
The HyperText portion of HTML is used to define the links, between pages or other files, called hyperlinks or links for short.
The Markup portion is used to instruct the browser on how that content should look and/or how it should be arranged.
The overall arrangment of the HTML file or structure should follow the standard outlined below.

HTML doc structure
Fig. 2 Image is courtesy of www.udacity.com

This video is a good resource explaining the HTML document structure.
View on YouTube

HTML Tags

Tags are used to mark-up the text document and they are what tell the browser how to format and structure the page for display. They are part of what makes up an element.
This example is considered a element  <tag> content </tag>
It has an opening tag, some content, and a closing tag. HTML uses various tags to create different elements that structure and format the content.
There are two types of elements inline and block

InLine element/tags

Some examples of inline elements are:
Note: The last two tags mentioned above are known as void elements as they don't contain any content and as a result don't require a closing tag.

Block elements/tags

Some examples of block elements are:
This is just a few of each type of tag/elements available. I found this resource which lists many many more than I covered.