Home >> HTML 5 >> head Tag in HTML 5

head Tag in HTML 5

The <head> tag is used to define the head portion of the document which contains information related to the document. 
The following elements can go inside the <head> element:
1)-<title>
2)-<style>
3)-<base>
4)-<link>
5)-<meta>
6)-<script>
7)-<noscript>

For example:-

<!DOCTYPE html>
<html>
<head>
   <title>Head Tag</title>
</head>
<body>
    <h2>Coder Raj/h2>
    <p>I am frontend developer.</p>
</body>
</html>

Post Your Comment

Next Questions
header Tag
hr Tag
html Tag
i Tag
iframe Tag
img Tag
input Tag
ins Tag
kbd Tag
label Tag
legend Tag
li Tag
link Tag
ul Tag
video Tag
wbr Tag

Copyright ©2022 coderraj.com. All Rights Reserved.