Which html tag is used to insert the title in the html document?
Answers
Answered by
4
<title > your title </title >
ex - <html>
<head>
<title >
computer
</title >
</head>
<body>
it is a electronic device
</body>
</html>
...i hope its help ☆☆ :)
if any problem in understanding then you can ask in comment☆☆ :)
ex - <html>
<head>
<title >
computer
</title >
</head>
<body>
it is a electronic device
</body>
</html>
...i hope its help ☆☆ :)
if any problem in understanding then you can ask in comment☆☆ :)
Answered by
1
Answer:
<title>
Explanation:
In HTML <title> is used to insert the title in the HTML document. It is a closed tag. This means you have to end the tag with </title>. Example
<!DOCTYPE html>
<html>
<head>
<title>Title goes here</title>
</head>
<body>
This is a simple HTML page.
</body>
</html>
Similar questions
History,
7 months ago
Computer Science,
1 year ago