-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.17 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="jquery.min.js" type="text/javascript"></script>
<script src="skulpt.min.js" type="text/javascript"></script>
<script src="skulpt-stdlib.js" type="text/javascript"></script>
<script src="index.js" type="text/javascript"></script>
<title>
Python Interpreter for Chrome
</title>
</head>
<body>
<div style="margin-top: -13px;">
<p id="title"><b>Python Interpreter for Chrome</b>
<img src="images/python-logo.png" height="38" width="38"></p>
</div>
<form>
<textarea id ="code" placeholder="code..." autocorrect="off" autocomplete="off" autocapitalize="off" spellcheck="false"></textarea>
<button type="button" id="run"><b>Run</b></button>
</form>
<textarea id ="output" placeholder="output..." autocorrect="off" autocomplete="off" autocapitalize="off" spellcheck="false">
</textarea>
<div id="footer">Made by <a target="_blank" href="https://www.linkedin.com/in/abhinav-dubey-007001/">Abhinav Dubey</a>
</div>
</body>
</html>