Hypertext Markup Language (HTML) is the standard markup language for building web pages and web applications. Using HTML you can design your website.


HTML extension

HTML files have the extension ".html".



HTML tags

HTML tags are surrounded by angle brackets (<>).

<tagname> The code goes here ... </tagname>



HTML Page structure

create any file with ".html" extension and put the following code 


index.html

<html>
<head>
    <title>Page Title</title>
</head>
<body>
    Page Content goes hereā€¦
</body>
</html>