Everything in HTML will go between <html> and </html> .
There are two parts in Html the head and the body , Let's first start with
the Head ....
The head contains informations about your file like the title we will see what we can do with the Head part later in this Part.
<!DOCTYPE html>
<html>
<head>
<title>put the title here!</title>
</head>
<body>
<p>
//this is a one line comment
</p>
</br> <!-- this tag is called break Tag to jump to new line-->
<!-- To put a multiple lines comment we Do it
this way -->
</body>
</html>
it's clearly shown in the image how to set a comment , this one is for multiple lines...
There are two parts in Html the head and the body , Let's first start with
the Head ....
The head contains informations about your file like the title we will see what we can do with the Head part later in this Part.
<!DOCTYPE html>
<html>
<head>
<title>put the title here!</title>
</head>
<body>
<p>
//this is a one line comment
</p>
</br> <!-- this tag is called break Tag to jump to new line-->
<!-- To put a multiple lines comment we Do it
this way -->
</body>
</html>
it's clearly shown in the image how to set a comment , this one is for multiple lines...