-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
60 lines (56 loc) · 1.36 KB
/
practice.html
File metadata and controls
60 lines (56 loc) · 1.36 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
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeShip Practice</title>
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: #9fd3ec;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1 {
color: #fff;
text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}
.button-container {
display: flex;
gap: 20px;
margin-top: 30px;
}
button {
background-color: white;
color: #333;
border: none;
padding: 15px 30px;
border-radius: 8px;
font-size: 1.1em;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
button:hover {
background-color: #72c2e3;
color: white;
transform: translateY(-3px);
}
</style>
</head>
<body>
<h1>Choose a Language to Practice</h1>
<div class="button-container">
<button onclick="location.href='practice-python.html'">Python</button>
<button onclick="location.href='practice-js.html'">HTML, CSS, & JavaScript</button>
</div>
<br>
<p>More languages coming soon!</p>
<br>
<button onclick="location.href='index.html'">⬅ Back to Chatbot</button>
</body>
</html>