Artificial-superintelligence
commited on
Create index.html
Browse files- index.html +25 -0
index.html
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Python IDE</title>
|
7 |
+
<link rel="stylesheet" href="static/style.css">
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div class="terminal-container">
|
11 |
+
<div class="header">
|
12 |
+
<h1>Python IDE</h1>
|
13 |
+
<span>Running Python 3.x</span>
|
14 |
+
</div>
|
15 |
+
<div id="terminal" class="terminal">
|
16 |
+
<div class="output">
|
17 |
+
<div class="prompt">>>> </div>
|
18 |
+
</div>
|
19 |
+
<input type="text" id="user-input" class="input" placeholder="Type your Python code here..." />
|
20 |
+
</div>
|
21 |
+
</div>
|
22 |
+
|
23 |
+
<script src="static/script.js"></script>
|
24 |
+
</body>
|
25 |
+
</html>
|