Summary

Next ❯Comment Tag
  • You should remember that the whole basic html is all about Tags & Attributes
  • Tag helps you to create your Web Pages
  • Attribute helps you to provide some features to the TAGS or you can say ADD-Ons to your TAGS
  • To design Your HTML web Page, You have to learn CSS and you can learn it in new tutorial section
  • To make your HTML web Page dynamic and interactive, You have to learn JavaScript and you can also learn it in new tutorial section
  • Note! Don't be confuse about Tags and Elements, they both are similar
  • Tips! If you are a beginner than Don't be in hurry, first complete one tutorial then go for another

Page Structure

<!--Document Version declaration tag-->
<html>
  <head>
    <!--Document header related tags are used here-->
  </head>
  <body>
    <!--Document body related tags are used here-->
  </body>
</html>

  • Comment Tag
❮ Prev HTML Attributes
Next ❯Comment Tag
receipt