Home Streamer Website Builder Linux Open Source Streamer Logic Battle Card RPG Godot Tutorials Linux Gaming Blog NodeJS + Postgres LAMP Stack HTML CSS PHP ReactJS VR Tech Blog Palm Beach Techie

Intro to HTML: Head Tags

Quick Copy Boxes


<head> This is a head starting tag.

</head> This is an ending head tag.


      <!DOCTYPE html>
      <html>
        <head>

        </head>
      </html>
    

After the DOCTYPE and html tags, you will put head tags. The head usually contains CSS links, title, and maybe some CSS style.

There are other tags, such as scripts and meta tags, that you may also want to include in head tags.



    <!DOCTYPE html>
    <html>
      <head>
        <!-- Meta tags-->
        <meta> </meta>
        <!-- Links and Scripts-->
        <link rel="stylesheet" type="text/css" href="custom.css">
        <title>   <!-- title-->  </title>
        <style>
          /* CSS Code*/
        </style>
      </head>
    </html>