HTML Simple Document - chrisbitm/python GitHub Wiki
HTML stands for Hyper Text Markup Language. It is considered the standard markup language for creating Web Pages. It uses Ankle Brackets <> </>
as a means to a Start and an End of Element Render to display Content. It encompasses the very structure of Web Pages.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
- The
<!DOCTYPE html>
tag is a declaration that tells the Browser that this is an HTML 5 Document. - The
<html>
tag is the root element of an HTML page. - The
<head>
tag contains Meta Information about the HTML Page - The
<title>
tag specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab) - The
<body>
tag defines the Document's Body, and is a Container for all the visible Contents, such as Headings, Paragraphs, Images, et cetera. - The
<h1>
tag defines a Heading. - The
<p>
tag defines a Paragraph of Text.
Most HTML elements follows this pattern:
<tag name> Content goes here </tag name>