@charset "utf-8";
/*CSS Document */



.bigBlue {
    font-size: 36px;
    font-family: Verdana, serif;
    color: black;
}
.Golden {
    font-size:50px;
    font-family: Verdana, serif;
    color:gold;
}
.blanktxt {
    font-size:20px;
    font-family: Helvetica, serif;
    color:white;
}
.GoHome {
    font-size:20px;
    font-family: Georgia, serif;
    color:brown;
}
.div1 {
    background-color: grey;
    font-size: 32px;
    text-align: center;
    height: 60px;
}
.div2 {
    background-color: white;
    font-size: 32px;
    height: 50px;
}
.div3 {
    background-color: blue;
    font-size: 32px;
    height: 50px;
}
.boxStatic {
    height: 200px;
    width: 200px;
    background-color: green;
    position: static;
}
.boxFixed {
    height: 200px;
    width: 200px;
    background-color: red;
    position: fixed;
}
.boxRelative {
    height: 200px;
    width: 200px;
    background-color: yellow;
    position: relative;
    left: 200px;
}
.boxAbsolute {
    height: 200px;
    width: 200px;
    background-color: blue;
    position: absolute;
    left: 200px;
}


</style>

</head>

<body>

<div class="boxStatic">
    static
</div>

<div class="boxRelative">
    relative
</div>

<div class="boxAbsolute">
    absolute
</div>

<div class="boxFixed">
    fixed
</div>

</body>

</html>