Title:
<title> using in the HTML document. It is written in the <head> tag.
It makes titles for a web page . It is an important tag of html. It display
The title for the page in the search engine result.
Think, when we search a search engine it shows
the topic which we want. It is the title of the websites.
When we need SEO (Search engine optimization). It is very important .
Syntex:
<title>Basic get in </title>
Note:
We can’t use the <title> element one more time.
Example:
<!DOCTYPE html>
<html >
<head>
<title>Basic get in </title>
</head>
<body>
<p>
Hay hello web developer!!!
</p>
</body>
</html>
Post a Comment