Learn HTML Post 3 : What is the basic structure of an HTML document ?

 A basic HTML document looks like this...

<html>

<head>

</head>

<body>

</body>

</html>


Here, <html> and </html>  are the basic tags for an html document.

<head> and </head> include the title and the metadata of the document.

<body> and </body> tags define the body of an html document. Inside these tags, we will make headings, paragraphs, links, images etc.

Comments