HTML stands for Hypertext Markup Language. It is the standard markup language used to create web pages.
HTML files have extension “.htm" and “.html" . You can create one using a simple text editor like Notepad (Windows) or TextEdit (Mac).
HTML tags are surrounded by angle brackets (<>).
<tagname> Code goes here…</tagname>
Here <tagname> is the opening tag and </tagname> is the close tag.
A basic HTML document consists of the following structure:
<html>
<head>
<title>Page Title</title>
</head>
<body>
Page Content goes here…
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p>My first HTML File.</p>
</body>
</html>