body {

    background-color: yellow;
    margin: 1cm;
    /* Minimum width avoids line feed and display errors in modern browsers. */
    min-width: 800px;
    width: 800px;
}

h1 {
    font-size: 18pt;
    color: #000000;
}

#content {
    font-size: 12pt;
    font-weight: bold;
    color: #0000FF;
}

.button {

    margin: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: gray;
    background-color: #FFFFFF;
    color: #000000;
    padding: 5px;
}
title>
            Second Page of CYBOL Static WWW Server Example
        </title>
    </head>
    <body>
        <h1>
            Second Page of CYBOL Static WWW Server Example
        </h1>
        <p id="content">
            This is an example web page delivered as static page from server to client.
        </p>
        <br/>
        <a href="subdirectory/third_page.html" class="button">
            Call a third page lying in a sub directory.
        </a>
    </body>
</html>
