-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice-python.html
More file actions
51 lines (51 loc) · 1.1 KB
/
practice-python.html
File metadata and controls
51 lines (51 loc) · 1.1 KB
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
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice Python - CodeShip</title>
<style>
body {
background-color: #9fd3ec;
font-family: 'Poppins', sans-serif;
text-align: center;
margin: 0;
padding: 0;
}
iframe {
width: 90%;
height: 85vh;
border: none;
border-radius: 10px;
margin-top: 20px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
button {
margin-top: 15px;
background-color: white;
padding: 10px 20px;
border-radius: 8px;
border: none;
font-size: 1em;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background-color: #72c2e3;
color: white;
}
</style>
</head>
<body>
<h2>Practice Python 🐍</h2>
<iframe
width="100%"
height="600"
src="https://www.jdoodle.com/python3-programming-online/"
frameborder="0"
allowfullscreen>
</iframe>
<br>
<button onclick="location.href='practice.html'">⬅ Back to Language Menu</button>
</body>
</html>