Hypertext Markup Language(HTML) is the standard markup language for creating web pages and web applications. Using HTML you can create your own website.
HTML files have extension “.htm" and “.html" .
HTML tags are surrounded by angle brackets (<>).
<tagname> Code goes here…</tagname>
Here
<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>