git @ Cat's Eye Technologies LiveMarkov / master demo / live-markov.html
master

Tree @master (Download .tar.gz)

live-markov.html @masterraw · history · blame

<!DOCTYPE html>
<!--
SPDX-FileCopyrightText: Chris Pressey, the creator of this work, has dedicated it to the public domain.
For more information, please refer to <https://unlicense.org/>
SPDX-License-Identifier: Unlicense
-->
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>LiveMarkov</title>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js"></script>
    <style>
        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }
        #input-container {
            display: flex;
            width: 100%;
            max-width: 620px;
            margin-bottom: 20px;
        }
        textarea {
            width: 300px;
            height: 100px;
            margin: 0 5px;
        }
        svg {
            border: 1px solid #ccc;
        }
    </style>
</head>
<body>
    <h1>LiveMarkov</h1>
    <div id="installation"></div>
    <script src="live-markov-launcher.js"></script>
    <script src="../src/live-markov.js"></script>
    <script>
        launch();
    </script>
</body>
</html>