In this lecture, We will see how a HTML5 document is structured. what the tags we use. We will also learn the role of each line it has.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML COURSE</title>
</head>
<body>
</body>
</html>HTML Tag
It is the main tag or lets say wrapper. Anything and everything that our html document will have, will go inside this tag.
HEAD Tag
Head tag is responsive for collecting all the scripts and css required for the content or lets say body tag. It will gather and prepare everything before browser shows our content. We will place all the SEO meta tags and all the external links here.
BODY Tag
The actually content that we want to show to the users will go to the body tag. All the headings, paragraph,table, list.anything that you want to show to the user should be inside this tag.
I hope you will like it. If you face any issue or have any doubt please connect with me via facebook messenger chat floating on the right side of the screen :)
happy learning :)
