Now, lets start with the basic code!!
For the sake of convenience
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
Hello World
</body>
</html>
Tags: Each element of a webpage is enclosed in tags.
For example,
the body of the web page i.e the content of the webpage lies between the <body> and </body> tag. Similarly to denote the title for the webpage, we enclose it in the <title> tag.
the <name_of_tag> is for denoting start of the tag, while to close it we use </name_of_tag>
3
