Already a member?
Sign in
| Version | User | Scope of changes |
|---|---|---|
| Oct 13 2007, 3:59 PM EDT (current) | einstein_copernicus | |
| Oct 13 2007, 3:56 PM EDT | einstein_copernicus |
Changes
Key: Additions Deletions
Every HTML program has one simple structure. There are two major components to the structure of a web site, the "head" and "body". The "head" provides the title and other information about your web site , while the "body" provides the information and content. Each of these components are marked by "tags", which let the computer know where the information is written. There are two types of "tags", opening tags and closing tags. Opening tags have one triangular bracket (</>) on each of their two sides, while closing tags start and end with a triangular bracket and a slash (/)at the beginning. Lastly, all web sites begin with the tag <html> and close with the tag </html>.
Example:
<html>
<head>
<title>|
</title>
</head>
<body>
</body>
</html>
Example:
<html>
<head>
<title>|
</title>
</head>
<body>
</body>
</html>
