Style

The style element allows for simple style definitions to be established in a single HTML page without having to link to external documents. This is another element we will not use for the first few weeks but will rely upon heavily after we start looking at CSS.

HTML
<!DOCTYPE html>
<html>
  <head>
    <!-- Other meta elements -->
    <style>
      body {background-color: snow}
      h1 {color: purple}
    </style>

  </head>

</html>

html elements head style