CLOSE

Help Us Help You

This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying staff members.

Style Tag

The <style> tag is used to create a section of CSS style rules for the document. This belongs within the <head> tags.

<!DOCTYPE html>
<html>
    <head>
        <style>
            body {
                color:blue;
            }
        </style>
    </head>
    <body>
        My font will now be blue.
    </body>
</html>

Copyright 2016 Step By Step HTML. All Rights reserved.