<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> |