The basic webform resembles the following
1 | <html> |
As you can see it’s text, but with tags or elements within that text. HTML starts with an HTML tab, and embedded into that is a HEAD tag and a BODY tag. The Head tag controls some behind the scenes stuff like what is shown on the tab bar. Programmers also stuff it with things like include files.
1 | <html> |
This is an example of a basic page which has a link to a file called all.css. This file holds CSS code, which is used to control the look of the page. (colors, fonts, etc.)