1. HTML Basics What is HTML? HTML stands for HyperText Markup Language. It is the standard language used to create and design web pages. Basic HTML Structure: Every HTML document has a basic structure, which is always consistent. Hereโ€™s how it looks:
<!DOCTYPE html>
<html>
  <head>
    <title>My Page</title>
  </head>
  <body>
    <h1>Hello World</h1>
  </body>
</html>
: This tag tells the browser that the document type is HTML5. : The opening tag that defines the start of the HTML document. : Contains metadata like the document title and links to stylesheets or scripts (not visible to the user). : Contains all the visible content of the webpage (text, images, etc.).
HTML Introduction HTML Elements HTML Headings