http-salient 0.1.1

Simple http webserver
Documentation
<!DOCTYPE html>
<html lang="en">

<head>
    <link rel="stylesheet" href="default.css">
    <title>Not found</title>
</head>

<body>
    <style>
        * {
            text-align: center;
        }

        a {
            color: white;
            text-decoration: underline;
            text-decoration-thickness: 7px;
            transition: all 2s;
        }

        a:hover {
            color: darkslategrey;
            background-color: white;
        }
    </style>
    <h1>Page that you are trying to access doesn't exist!</h1>
    <h2><a href="https://github.com/GreatC0der/salient/issues">Open an issue.</a></h2>
</body>

</html>