File size: 735 Bytes
			
			| 6cbcee7 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Python IDE</title>
    <link rel="stylesheet" href="static/style.css">
</head>
<body>
    <div class="terminal-container">
        <div class="header">
            <h1>Python IDE</h1>
            <span>Running Python 3.x</span>
        </div>
        <div id="terminal" class="terminal">
            <div class="output">
                <div class="prompt">>>> </div>
            </div>
            <input type="text" id="user-input" class="input" placeholder="Type your Python code here..." />
        </div>
    </div>
    <script src="static/script.js"></script>
</body>
</html> |