HTML

The basic webform resembles the following

1
2
3
4
5
6
<html>
<head></head>
<body>
Hello World
</body>
</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
2
3
4
5
6
7
8
9
10
<html>
<head>
<link
href="all.css"
rel="stylesheet">
</head>
<body>
Hello World
</body>
</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.)