Basic Web Pages
 
Advanced
 
Basic:
 
A basic webpage is *very* simple, although webpages can be very complex. They all have something in common. Webpages are just "text" documents with a few or many defined elements.  They also have *.htm, *.html or instead of the *.txt extension. They usually have "Links" to other webpages. They were created to deliver both text and images in response to one request.
 
Simple webpage:
 
<html>
 
<head></head>
 
<body>
The visible content of the webpage goes in here in the body
element. The body can also include images, and other elements.
</body>
 
</html>
 
Web Page Structure
 
<html> [Opens the document (identifies it as an HTML document).]
 
<head> [Opens the head element.]
<!-- Metadata goes in here. -->
</head> [Closes the head element.]
<!-- "White space" -- (extra) spaces, tabs, new lines -- is ignored by browsers when parsing HTML. -->
 
<body> [Opens the body.]
The visible content of the webpage goes in here in the body
element. The body can also include images, and other elements.
</body> [Closes the body.]
 
</html> [Closes the document.]
 
_________________________________________________________________________________
 
Your first HTML tags http://www.tizag.com/htmlT/tags.php
 
Web Page Structure  http://www.w3.org/TR/html4/struct/global.html  http://www.w3.org/
 
W3C http://www.w3.org/
Previous  |  Next ]     [ Up a level  |  First   |  Last ]     (Article 21 of 54)

This page is created with TreePad