different between head tag and title tag
Answers
Answered by
7
head tag is parent tag of title. head tag contains meta tags and stylesheet refference
title tag contains only title of the website nothing else
for example
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Title of the website</title>
</head>
<body>
<h1>Content of the website</h1>
</body>
</html>
title tag contains only title of the website nothing else
for example
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Title of the website</title>
</head>
<body>
<h1>Content of the website</h1>
</body>
</html>
Similar questions