HTML - Hyper Text Mark Up Language
What is HTML?
Sample Code
<!DOCTYPE html> → declaration defines that this document is an HTML5 document
<html> →element is the root element of an HTML page
<head> →element contains meta information about the HTML page
<title>Page Title</title> →element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
</head>
<body> →his tag contains the content of the web page.
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>