HTML Basics :
PAGE STRUCTURE








All normal webpages consist of a head and a body.

    Head     

 

     Body     

 



  • The head is used for text and tags that do not show directly on the page.


  • The body is used for text and tags that are shown directly on the page.


Finally, all webpages have an <html> tag at the beginning and the end, telling the browser where the document starts and where it stops.

The most basic code - the code you will use for any page you make, is shown below:

<html>
<head>
<!-- This section is for the title and technical info of the page. -->
</head>
<body>
<!-- This section is for all that you want to show on the page. -->
</body>
</html>


 << PREVIOUS
READ MORE >>  
















DEVELOPER TIP!





     "Better Than Books - As Easy As It Gets!"