about summary refs log tree commit diff stats
path: root/src/vimrc.vim
blob: 4c04b9088fca1e709f77726fe02134216076b109 (plain) (blame)
1
2
3
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>sand</title>
    <style>
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
            overflow: hidden;
        }

        #sand {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    </style>
</head>
<body>
    <canvas id="sand"></canvas>
    <script src="sand.js"></script>
</body>
</html>