HTML (HyperText Markup Language) is the standard language used to create web pages. It provides the core structure of a website using elements like headings, paragraphs, images, and links.
Every HTML document follows this essential skeletal structure:
<!DOCTYPE html>
<html>
<head>
<title>Your Page Title</title>
</head>
<body>
<h1>Hello World!</h1>
</body>
</html>
An HTML element is defined by a start tag, some content, and an end tag.
<p>This is a paragraph element</p>