HTML Basic

  • HTML

HTML is the standard language for displaying web pages.

HTML Page Structure


  <html>
    <head>
         <title> Page Structure </title> 
    <head />

    <body>
    
         <p> This is a paragraph.  /p>
         <div> The div tag defines a section in an HTML document. </div>

         <div> 
           <ul> 
              <li>Book</li>
              <li>DVD</li>
              <li>Online</li>
           </ul>
         </div>

    </body>
     
</html>