-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython_course.html
More file actions
358 lines (354 loc) Β· 9.35 KB
/
python_course.html
File metadata and controls
358 lines (354 loc) Β· 9.35 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>
Python Course
</title>
<script src="https://cdn.tailwindcss.com">
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet"/>
<style>
body {
font-family: 'arial', cursive;
}
</style>
</head>
<header class="fixed top-0 left-0 w-full p-4 text-center shadow-md z-20" style="background-color: #950833;">
<div class="flex items-center max-w-screen-xl mx-auto">
<h1 class="text-xl flex-grow text-centerd">Welcome to your "Data Science Course"</h1>
<div class="flex gap-4">
<button onclick="history.back()" class="bg-gray-700 hover:bg-gray-600 text-blue-400 p-2 rounded" title="Go back">
<i class="fas fa-arrow-left" align="right"></i>
</button>
<a href="index.html" class="bg-gray-700 hover:bg-gray-600 text-blue-400 p-2 rounded">
<i class="fas fa-home" align="right"></i>
</a>
</div>
</div>
</header>
<body class="text-white" style="background-color: #950833;">
<div class="relative h-screen flex items-center justify-center">
<img
class="absolute inset-0 w-full h-full object-cover"
height="512"
src="04.jpg"
width="1200"
alt="Background image for Python course"
/>
<div class="absolute inset-0 bg-black opacity-50">
</div>
<div class="relative z-10 text-center px-6 md:px-12 lg:px-24">
<div class="flex justify-center items-center space-x-2 mb-4">
<span class="bg-gray-700 text-white py-1 px-3 rounded-full text-xs">
BEGINNER
</span>
<span class="text-gray-400">
COURSE
</span>
</div>
<h1 class="text-5xl md:text-6xl lg:text-7xl font-bold mb-4">
Data Science
</h1>
<p class="text-lg md:text-xl lg:text-2xl">
Master Data Science fundamentals, including variables, control flow,
<p class="text-lg md:text-xl lg:text-2xl mb-6">
and loops, in the world's most popular language!
</p>
<a href="#course-content" class="bg-yellow-500 text-gray-900 py-3 px-6 rounded-full text-lg md:text-xl lg:text-2xl font-bold hover:bg-yellow-400">
Start Learning
</a>
</div>
</div>
<!-- Footer Section -->
<footer class="fixed bottom-0 left-0 w-full bg-[#950833] p-4 text-center shadow-md">
<i><p class="text-sm">© 2025 Skill Valley. All rights reserved.</p></i>
</footer>
<body bgcolor=" #AA395B" text-white">
<header class="relative">
</header>
<main class="flex flex-col lg:flex-row justify-center mt-8 px-4 lg:px-0" style="background-color: #AA395B;">
<section id="course-content" class="bg-[#AA395B] p-6 rounded-lg shadow-lg w-full lg:w-2/3 mb-8 lg:mb-0">
<div class="mb-6">
<h2 class="text-xl font-bold mb-2">
1. Hello World
</h2>
<p class="mb-4">
Learn how to write your first line of Python by printing messages to the terminal.
</p>
<div class="bg-[#950833] p-4 rounded-lg">
<div class="flex justify-between items-center mb-2">
<span>
Exercise 1
</span>
<span>
Setting Up
</span>
<button class="bg-gray-600 text-white px-4 py-1 rounded">
???
</div>
<div class="flex justify-between items-center mb-2">
<span>
Exercise 2
</span>
<span>
Hello World
</span>
<a href="video.html" class="bg-blue-500 hover:bg-blue-400 text-white px-4 py-1 rounded">
Start
</a>
</div>
<div class="flex justify-between items-center mb-2">
<span>
Exercise 3
</span>
<span>
Pattern
</span>
<button class="bg-gray-600 text-white px-4 py-1 rounded">
???
</button>
</div>
<div class="flex justify-between items-center mb-2">
<span>
Exercise 4
</span>
<span>
Initials
</span>
<button class="bg-gray-600 text-white px-4 py-1 rounded">
???
</button>
</div>
<div class="flex justify-between items-center mb-2">
<span>
Exercise 5
</span>
<span>
Snail Mail
</span>
<button class="bg-gray-600 text-white px-4 py-1 rounded">
???
</button>
</div>
<div class="flex justify-between items-center">
<span>
Bonus Article
</span>
<span>
Complete chapter to unlock
</span>
<button class="bg-gray-600 text-white px-4 py-1 rounded">
???
</button>
</div>
</div>
</div>
<ul class="space-y-4">
<li class="flex justify-between items-center">
<span>
2. Variables
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
3. Control Flow
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
4. Loops
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
5. Checkpoint Project
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
6. Lists
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
7. Functions
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
8. Classes & Objects
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
9. Modules
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
10. Final Project
</span>
<span class="text-blue-400">
Club
</span>
</li>
<li class="flex justify-between items-center">
<span>
11. Course Certificate
</span>
<span class="text-blue-400">
Club
</span>
</li>
</ul>
</section>
<aside class="bg-[#BF6A84] p-6 rounded-lg shadow-lg w-full lg:w-1/3">
<div class="mb-6">
<h3 class="text-xl font-bold mb-2">
Your Name
</h3>
<p class="mb-4">
Level 1
</p>
<button class="bg-blue-500 text-white px-4 py-2 rounded w-full">
View Profile
</button>
</div>
<div class="mb-6">
<h3 class="text-xl font-bold mb-2">
Course Progress
</h3>
<ul class="space-y-2">
<li class="flex justify-between items-center">
<span>
Exercises
</span>
<span>
0/12
</span>
</li>
<li class="flex justify-between items-center">
<span>
Projects Completed
</span>
<span>
0/2
</span>
</li>
<li class="flex justify-between items-center">
<span>
XP Earned
</span>
<span>
0/150
</span>
</li>
</ul>
</div>
<div class="mb-6">
<h3 class="text-xl font-bold mb-2">
Course Badges
</h3>
<ul class="flex space-x-2">
<li>
<i class="fas fa-medal text-gray-500">
</i>
</li>
<li>
<i class="fas fa-medal text-gray-500">
</i>
</li>
<li>
<i class="fas fa-medal text-gray-500">
</i>
</li>
<li>
<i class="fas fa-medal text-gray-500">
</i>
</li>
</ul>
</div>
<div class="mb-6">
<h3 class="text-xl font-bold mb-2">
Cheat Sheets
</h3>
<ul class="space-y-2">
<li class="flex justify-between items-center">
<span>
Unlock printable with Python
</span>
<span>
0/12
</span>
</li>
<li class="flex justify-between items-center">
<span>
Unlock after Ch. 4
</span>
<span>
0/12
</span>
</li>
<li class="flex justify-between items-center">
<span>
Unlock after Ch. 8
</span>
<span>
0/12
</span>
</li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-2">
Need Python Help?
</h3>
<button class="bg-blue-500 text-white px-4 py-2 rounded w-full">
Go to Community
</button>
</div>
</aside>
</main>
</body>
</html>
<script type="text/javascript">
(function(d, t) {
var v = d.createElement(t), s = d.getElementsByTagName(t)[0];
v.onload = function() {
window.voiceflow.chat.load({
verify: { projectID: '67aaeb3ec1f7f579513cb4d7' },
url: 'https://general-runtime.voiceflow.com',
versionID: 'production'
});
}
v.src = "https://cdn.voiceflow.com/widget-next/bundle.mjs";
v.type = "text/javascript";
s.parentNode.insertBefore(v, s);
})(document, 'script');
</script>