-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice-js.html
More file actions
43 lines (43 loc) · 1020 Bytes
/
practice-js.html
File metadata and controls
43 lines (43 loc) · 1020 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice HTML, CSS, & Java - CodeShip</title>
<style>
body {
background-color: #9fd3ec;
font-family: 'Poppins', sans-serif;
text-align: center;
}
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 JavaScript ⚡</h2>
<iframe src="https://jsfiddle.net/" allowfullscreen></iframe>
<br>
<button onclick="location.href='practice.html'">⬅ Back to Language Menu</button>
</body>
</html>