HTML Introduction

HTML is used for creating Web pages.

  • HTML stands for Hyper Text Markup Language.
  • HTML elements are represented by tags.
  • HTML is widely used language on the web.
  • HTML elements are the building blocks of HTML pages.

# Example

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title</title>
</head>
<body>
   <h1>Write Your First Heading.</h1>  
   <p>Write Your First Paragraph.</p>
 </body>
</html>