HTML <head> element


<head> tag defines the head section of the web page. It may contain other tags including <base> <link>, <meta>, <script>, <style>, <title> etc. The head section will not shown in the browser as main content, but can be parsed by web crawlers.

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>HTML element -- EndMemo</title>
<meta name="description" content="HTML <head> element examples">
<link rel="icon" href="/images/endmemo.png" type="image/x-icon">
<STYLE type="text/css">
.r{color: black;background-color:#efffff;}
</STYLE>
...
</head>
<body>
...
</body>
</html>