<head> HTML Tag

In this article I will discuss the <head> HTML Tag
  • 1650

The HTML head tag is used for indicating the head section of the HTML document.The head can contain other HTML tags that provide information about the document such as title, description, keywords etc.The <head> element must include a title for the document, and can include scripts, styles, meta information, and more.

Example

<html>

<head>

    <title>HTML head tag</title>

</head>

<body style="color: orange">

    All the content place hear.

</body>

</html>


Output


rrr.jpg 

 

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.