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:
- <!DOCTYPE html>
- <html lang="en" dir="ltr">
- <head>
- <meta charset="utf-8">
- <meta name="author" content="Nataraja Murthy">
- <base href="images/" >
- <title>details of head tag</title>
- <link rel="stylesheet" href="css/stylesheet.css">
- <style media="screen">
- body {
- background-color : lightblue;
- }
- </style>
- <script src="js/javascript.js"></script>
- </head>
- <body>
- <hr>
- <img src="park.jpg" alt="park">
- <p>Thank you for Watching...</p>
- </body>
- </html>
Web view of Html:
Here is the Video: