<var> and </var>

PURPOSE: To make variable text

Below is a basic html document. The referenced html tag is in RED. All tags must have a start and a end tag. Most end tags have a / before the tags name, however there are a few that are done differently. The tags that end differently will be noted and highlighted. The order of the start and end tags is also very important to proper display of your page in a web browser.


<html>
<head>
<title>Variable Text</title>
</head>
<body>
<var>
The text in here will be variable.
</var>
</body>
</html>


Here is an example of plain text

Here is an example of variable text


© Copyright 2001,2002 Southern Twilight    All rights reserved.

Back To HTML Examples