HTML Introduction


 WHAT IS HTML?

  • HTML stands for Hyper Text terminology
  • HTML is that the commonplace terminology for making websites
  • HTML describes the structure of an online page
  • HTML consists of a series of components
  • HTML components tell the browser a way to show the content
  • HTML components label items of content like "this may be a heading", "this may be a paragraph", "this may be a link", etc

 <!DOCTYPE html>  
 <html>  
 <head>  
 <title>Page Title</title>  
 </head>  
 <body>  
 <h1>My First Heading</h1>  
 <p>My first paragraph.</p>  
 </body>  
 </html>