Notes
HTML is the standard markup language.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
HTML elements with no content are called empty elements.
<br>
<hr>
<img>
<meta>
and <search>
are some of the empty elements in HTML.
HTML is not case sensitive.
HTML tags are not case sensitive: <P>
means the same as <p>
.