What is an HTML explain?

HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.

A basic HTML example :

Breakdown:

  • <!DOCTYPE html>: Declares the document type.
  • <html>: The root element.
  • <head>: Contains meta-information and the title of the page.
  • <body>: Contains the content of the page.
  • <h1>, <h2>: Headings for organizing content.
  • <p>: Paragraphs of text.
  • <ul>: An unordered list for items.
  • <a>: A hyperlink to another page.