Skip to main content

Head

Head | HTML: Head is the hidden part in web page but it contains the effective information of web page.

Head Elements List:

    1.title
    2.link
    3.style
    4.script
    5.meta
    6.base 

Here is the head.html:

  1.  <!DOCTYPE html>
  2.  <html lang="en" dir="ltr">
  3.    <head>
  4.      <meta charset="utf-8">
  5.      <meta name="author" content="Nataraja Murthy">
  6.      <base href="images/" >
  7.      <title>details of head tag</title>
  8.      <link rel="stylesheet" href="css/stylesheet.css">
  9.      <style media="screen">
  10.        body {
  11.          background-color : lightblue;
  12.        }
  13.      </style>
  14.      <script src="js/javascript.js"></script>
  15.    </head>
  16.    <body>
  17.      <hr>
  18.      <img src="park.jpg" alt="park">
  19.      <p>Thank you for Watching...</p>
  20.    </body>
  21.  </html>

Web view of Html:



Here is the Video: