<!DOCTYPE html>
<html>
<head>
<title>
Simple HTML Document
</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
</body>
</html>
Explained
- The <!DOCTYPE html> declaration defines that this document is an HTML5 document
- The <html> element is the root elemtn of an HTML page
- The <head> element contains meta information about the HTML page
- The <title> element specifies a title for the HTML page which will show in the browser's title bar or in the page's tab.
- The <body> element defines the document's body, is a container for all the visible contents, such as headings, paragraphs, images, heperlinks, tables, lists, etc.
- The <h1> element defines a large heading.
- The <p> element defines a paragraph
Index