File size: 1,930 Bytes
15d05ee
 
 
 
 
 
84c56c8
15d05ee
 
efec415
15d05ee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Playground</title>
    <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body class="m-0 p-0">
    <div class="grid grid-cols-2 w-dvh h-dvh divide-x divide-amber-300">
        <div class="bg-gray-200">
            <textarea id="code-input" class="w-full h-full font-mono p-2 resize-none"><!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
        }
        h1 {
            color: navy;
        }
    </style>
</head>
<body>
    <h1>Welcome to the HTML Playground</h1>
    <p id="message">Click the button to change this text.</p>
    <button onclick="changeText()">Change Text</button>
    <script>
        function changeText() {
            document.getElementById('message').innerText = 'Text changed!';
        }
    </script>
</body>
</html></textarea>
        </div>
        <div>
            <iframe id="output" class="w-full h-full border-none"></iframe>
        </div>
    </div>
    <script>
        document.addEventListener('DOMContentLoaded', () => {
            const codeInput = document.getElementById('code-input');
            const output = document.getElementById('output');

            function updateOutput() {
                output.contentDocument.open();
                output.contentDocument.write(codeInput.value);
                output.contentDocument.close();
            }

            // Initial render
            updateOutput();

            // Update on every input
            codeInput.addEventListener('input', updateOutput);
        });
    </script>
</body>
</html>