1
<!DOCTYPE html>
2
<html>
3
    <head>
4
        <title>My Example</title>
5
        <style>
6
            @import "/css/tutorial/example.css";
7
        </style>
8
    </head>
9
    <body>
10
        <h1>Embedded Styles</h1>
11
        <p id="intro">Allow you to define styles for the whole document.</p>
12
        <p class="colorful">This has a style applied via a class.</p>
13
    </body>
14
</html>