-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 3.38 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Repl - An Interactive Repl/IDE for Python</title>
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<body>
<h3 style="text-align: center; font-size: 28px; font-weight: bold; font-family: 'Poppins', sans-serif;">Interactive Python Repl</h3>
<span style="font-style: italic; margin-bottom: 0.5rem;">
<a href="https://github.com/TheSGJ/PyScript-ReplSite">
<p style="display: flex; justify-content: center;">
<svg style="height: 30px; width: 30px;" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<path d="M181.5,389.9c0,1.8-2.1,3.3-4.7,3.3c-3,0.3-5.1-1.2-5.1-3.3c0-1.8,2.1-3.3,4.7-3.3C179.2,386.4,181.5,387.8,181.5,389.9z
M153.3,385.8c-0.6,1.8,1.2,3.9,3.9,4.4c2.4,0.9,5.1,0,5.6-1.8s-1.2-3.9-3.9-4.7C156.6,383.1,153.9,384,153.3,385.8L153.3,385.8z
M193.4,384.3c-2.6,0.6-4.4,2.4-4.2,4.4c0.3,1.8,2.6,3,5.4,2.4c2.6-0.6,4.4-2.4,4.2-4.2C198.5,385.2,196,384,193.4,384.3z
M253.1,36.6C127.3,36.6,31,132.2,31,258c0,100.6,63.3,186.7,153.8,217c11.6,2.1,15.7-5.1,15.7-11c0-5.6-0.3-36.7-0.3-55.7
c0,0-63.5,13.6-76.8-27c0,0-10.3-26.4-25.2-33.2c0,0-20.8-14.2,1.5-14c0,0,22.6,1.8,35,23.4c19.9,35,53.2,24.9,66.1,19
c2.1-14.5,8-24.6,14.5-30.6c-50.7-5.6-101.9-13-101.9-100.3c0-24.9,6.9-37.5,21.4-53.4c-2.4-5.9-10.1-30.2,2.4-61.6
c19-5.9,62.6,24.5,62.6,24.5c18.1-5.1,37.7-7.7,57-7.7c19.3,0,38.8,2.6,57,7.7c0,0,43.6-30.5,62.6-24.5
c12.4,31.5,4.7,55.7,2.4,61.6c14.5,16.1,23.4,28.6,23.4,53.4c0,87.6-53.4,94.5-104.2,100.3c8.3,7.2,15.4,20.8,15.4,42.1
c0,30.6-0.3,68.4-0.3,75.8c0,5.9,4.2,13.1,15.7,11C419.5,444.7,481,358.6,481,258C481,132.2,378.9,36.6,253.1,36.6z M119.2,349.5
c-1.2,0.9-0.9,3,0.6,4.7c1.5,1.5,3.5,2.1,4.7,0.9c1.2-0.9,0.9-3-0.6-4.7C122.5,349,120.4,348.4,119.2,349.5z M109.4,342.2
c-0.6,1.2,0.3,2.6,2.1,3.5c1.5,0.9,3.3,0.6,3.9-0.6c0.6-1.2-0.3-2.6-2.1-3.5C111.5,341,110,341.3,109.4,342.2z M138.8,374.5
c-1.5,1.2-0.9,3.9,1.2,5.6c2.1,2.1,4.7,2.4,5.9,0.9c1.2-1.2,0.6-3.9-1.2-5.6C142.7,373.3,140,373,138.8,374.5z M128.4,361.1
c-1.5,0.9-1.5,3.3,0,5.4c1.5,2.1,3.9,3,5.1,2.1c1.5-1.2,1.5-3.5,0-5.6C132.2,360.9,129.9,360,128.4,361.1L128.4,361.1z"/>
</g>
</svg>
View Source Code
</p>
</a>
</span>
<button type="button" style="text-align: center; background: aqua; padding: 0 4px; border: none; border-radius: 6px; margin-left: 26px;"><a href="index.html">Clear All</a></button>
<py-repl id="demo-repl" auto-generate="true"></py-repl>
</body>
</html>