Sunday, November 28, 2021

Basic Structure of HTML

<!DOCTYPE html> 
<html>    <!--html tag-->
<head>    <!--head tag-->
<title>page name</title>    <!--title tag-->
</head>   <!--end head tag-->
<body>    <!--body tag-->
 this is the body of html

 <!--this is a method of writing a comment in html-->

</body>    <!-- end body tag-->
</html>    <!--end html tag-->


output:






No comments:

Post a Comment