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>
Copyright ©2022 coderraj.com. All Rights Reserved.