10.3 HTML Basic Example


1. The HTML code for a basic web page is provided in Listing 10.1.
2. It can be seen that the HTML document is composed of a number of mark ups, e.g. < HTML >, < HEAD >, etc.
3. The document is divided into:
4. A head section (between < HEAD > and < /HEAD >). The head also includes the title of the document (between < TITLE > and < /TITLE >)
5. A body section (between < BODY > and < /BODY >. The content of the document is included in the body. The body in the above document contains only one paragraph marked by the tag < P >.


Listing 10.1: Basic Example of HTML