Introduction HTML Head Element

Introduction About HTML <head> Element

After starting <html>document declare <head> tag this tag contain <title> of webpage,metadata,style,charter-set,links etc.This heading tag contain not display into the webpage.

A example :
<!DOCTYPE html>
<html>

<head>
  <title>abc page</title>
  <meta charset="UTF-8">
  <meta name="Keywords" content="HTML Tutorial,CSS,tutorial">
  <link rel="stylesheet" href="/lib/abc.css"></head>

<body>
</body>
</html>

Final Thought :

Heading elements contain title tag and other metadata tag and style with link.

Post a Comment

Previous Post Next Post