Skeleton of HTML - Comman to All Languages
Following is the basic skeleton of a HTML Page. A HTML document is made up of TAGS. These can be Single or Paired. Single Tags have no body of their own and convey meaning with the help of attributes only. Attributes are like variables which are required or may change the rendering of the content specified by the Tag. In case of Paired Tags, there is always a body which contains some content and the atrributes and tag define the rendering of the content placed between body of tag. A paired tag may have single tags in their body for specially defined method to show information while redering.
<html> <head> Head pre arranges the required CSS, JavaScript, MetaData, etc. </head> <body> This Comes in Body. </body> </html>
Save this file as index.html and open it in Internet Browser, see what shows up! Have Fun with Hypertext.













