A Basic HTML Document


<!DOCTYPE html>
<html>
<head>
<title>The title of your HTML document</title>
</head>
<body>
This is the body of your HTML document.
<p>This is a paragraph</p>
<p>The HTML tags are enclosed between angle brackets ( '<' and '>' ). <br>
The starting tag is <p> and the ending tag is </p>
</p>
</body>
</html>