What is HTML Title and TagLine means in Computer software engineer articles of One day One Thing to Know
2990 Views
Title and TagLine
Title - is the title of the company
TagLine - is the subtitle of the company
Example
Infosys [Title]
Building Tommorow's Enterprise [Subtitle/Tagline]
HTMLExample
<!DOCTYPE html>
<html>
<head>
<title>HTML page title and tag title example html</title>
</head>
<body>
<div>
<h1>Infosys</h1>
<p>Building Tommorow's Enterprise</p>
</div>
</body>
</html>
Hints
h1 header tags are mainly used to specify the title of the page.
p paragraph tag is used to specify the subtitle or tagline of the company.