/* style.css - a simple style sheet */
<style type="text/css" >

    /* First element is dummy   */
    H6 {color:black}

    div.box {
        background: rgb(204,204,255);
        border-width:medium; border:solid; border-color:black;
        text-align:center;
/*        padding: 5px  */
    }

    body {
        margin-left: 3%; margin-right: 3%;
        color:black; background:white;
    }

    H1 {
        font-family: Times;
        font-style: italic;
        font-weight: bold;
        font-size: 200%;
        color:blue;
    }
/*    h1,h2,h3,h4,h5,p,ul { font-family: sans-serif; }  */
</style>

