How to give a Title to a webpage
░▒▓█ ᗯEᒪᑕOᗰE TO TᕼIs ᗷᒪOG █▓▒░
Title is what which appears on the tag like this:
(header part of the web browser.
Post: Edit
To do so, we can use <title> tag and the <title> tag will be present inside the <head> and </head>.
<head> and </head> tells the web browser that the content between the <head and </head> should be shown in the header part of the web browser.
Like this
<html>
<head><title> This is the title </title></head>
</html>
Output:
Comments