HTML is the standard markup language for the Web Pages. With HTML, You can create your own static web pages and websites.
HTML will operates as a top to bottom approach. Which means the HTML code will be rendered into web pages as line by line.
HTML has tags. That is the skeleton of the web page. Which defines how the content to be rendered and displayed to the viewpoint.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading 1</h1>
<p>This is a paragraph</p>
</body>
</html>
These
<
>
angle brackets are used to denote tags in HTML.
- The tag is formed by open
<
angle bracket followed bytagname
and ends with close>
- For Void Elements, the end tag is neither required not allowed.
- Self Closing tags are not exist in HTML. But it required Void Elements in XML, XHTML and SVG elements.