HTML Head Tag | HTML <head> Tag | Header Tag Tutorial By WDH

HTML Head Tag


HTML HEAD

Prev

Next

The <head> tag is placed between <html> tag and <body> tag and <head> contains important tags like <title>, <link>, <style>, <base>, <meta>, <script> etc.

List of all HTML head tags

HTML Head

<title> HTML Tag

The <title> tag defines the title of the HTML document.

Example

<head>
 <title> Page Title</title>
</head>

Run the Code

 

<link> HTML Tag

This tag links External style sheets. External stylesheets are the CSS files(Cascading Style Sheets) which style your HTML document. In laymen terms, CSS makes your website look more attractive and engaging by using style features.