Every website in the world is built with HTML. HTML describes the structure of a web page using elements represented by tags like <h1>, <p>, and <a>. Most elements have an opening tag and a closing tag.
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Welcome to My Website</h1>
<p>This is my very first paragraph written in HTML!</p>
</body>
</html><!DOCTYPE html>Declares that this document is an HTML5 document.
<html>The root element that wraps everything on the web page.
<head>Contains meta information about the page, such as the tab title.
<body>Contains the visible page content seen by visitors.
<h1> ... </h1>A top-level headline.
<p> ... </p>A paragraph of text.