HTML Syntax

Syntax:

<!DOCTYPE  html>
<html>
<head>
<title>Page Title</title>
</head>

</body>

<head>

<h1>This is a heading</h1>

<p>This is a paragraph</p>

</body>

</html>

Syntax Explained:

  1. The <!DOCTYPE html> declaration defines that this document is an HTML5 document
  2. The <html> element is the root element of an HTML page
  3. The <head> element contains meta information about the HTML page
  4. The <title> element specifies a title for the HTML page
  5. The <body> element defines the document’s body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
  6. The <h1> element defines a large heading
  7. The <p> element defines a paragraph