Wednesday 11 January 2017

Lecture 1.1 - Practical Of HTML Page Structure

Basic HTML Page Structure:-

We can now meet or first three HTML tags html, head and body

Note that these specify the basic anatomy of every HTML page.

<html>
      <head>
            head elements go here
      </head>

      <body>
           body elements go here
      </body>
</html>

<html> is the first tag of any HTML page. It indicates that the contents of the page is in HTML.