HTML Head Elements

  • Example
  • HTML Title Element
    <html>
    <head>
    <title>Title of the document</title>
    </head>
    <body>
    The content of the document......
    </body>
    </html>

  • Example
  • HTML Base Element
    <head>
    <base href="http://www.w.example.com/images/" />
    <base target="_blank" />
    </head>

  • Example
  • HTML Link Element
    <head>
    <link rel="stylesheet" type="text/css" href="mystyle.css" />
    </head>

  • Example
  • HTML Style Element
    <head>
    <style type="text/css">
    body {background-color:yellow}
    p {color:blue}
    </style>
    </head>

HTML Inline Styles

  • Example
  • Code
    <p style="color:blue;margin-left:20px;">This is a paragraph.</p>

HTML Internal Style Sheet

  • Example
  • Code
    <head>
    <style type="text/css">
    body {background-color:yellow;}
    p {color:blue;}
    </style>
    </head>