<?php header("Content-Type: text/html; charset=ISO-8859-1"); ?>

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Foundation</title>
    <link href="https://fonts.googleapis.com/css?family=Droid+Serif" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Slabo" rel="stylesheet">
    <style>
    html {
        background: black;
        font-family: 'Slabo', serif;
        font-size: 15pt;
    }
    #read {
        color: #5EFF33;
        width: 600px;
        margin: auto auto;
    }
    </style>
</head>
<body>
    <div id="read">
        <?php echo nl2br( file_get_contents('foundation.txt') ); ?>
    </div>
</body>
</html>

