Commit 639573d9 authored by Chris's avatar Chris
Browse files

Index looks kinda like an index now

parent b4fa03bf
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
<html>
    <style>
        textarea[name="message"] {
            width: 80%;
            height: 20%;
            resize: none;
        }
    </style>

    <!-- Title -->
    <title>Spam Hunter</title>

    <!-- Meat 'n potatoes -->
    <body>
        <div id="interactivity">
            <!-- User interactivity portion -->
            <h3>Type your message here:</h3>
            <textarea name="message"></textarea>
            <p>Is it spam or ham? <button>Find out!</button> </p> 
        </div>
        <br>
        <div id="spam_words_list">
            <p>Top 5 words most commonly used in spam:
                    <ol>
                        <li>Sex</li>
                        <li>Prize</li>
                        <li>Singles</li>
                        <li>Larry</li>
                        <li>Win</li>
                    </ol>
                </p>
        </div>
        <!-- List used in spam -->

        <br>

    </body>
</html>