HTML Head Element defines the information used by HTML document.
Example
<!Doctype Html>
<Html>
<Head>
<meta charset="UTF-8">
<Title> HTML Head Element </Title>
<link rel="stylesheet" type="text/css" href="style.css">
</Head>
<Body>
<img src="logo.jpg" width="200" height="200" alt="logo">
</Body>
</Html>
Output
Copyright ©2022 coderraj.com. All Rights Reserved.