-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo.html
More file actions
194 lines (187 loc) · 6.95 KB
/
Copy pathvideo.html
File metadata and controls
194 lines (187 loc) · 6.95 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
<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;
background-color: #950833;
}
.content-wrapper {
display: flex;
gap: 2rem;
padding: 2rem;
margin-top: 5rem;
max-width: 1400px;
margin-left: auto;
margin-right: auto;
min-height: calc(100vh - 8rem);
}
.video-section {
flex: 3;
background: #AA395B;
padding: 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
}
.video-section video {
width: 100%;
height: calc(100vh - 16rem);
object-fit: contain;
background: #000;
border-radius: 0.5rem;
}
.info-section {
flex: 1;
background: #BF6A84;
padding: 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
height: fit-content;
min-width: 250px;
}
.name-input {
width: 100%;
padding: 0.5rem;
border-radius: 0.25rem;
border: 2px solid #ddd;
margin-bottom: 1rem;
font-size: 1rem;
background: white;
color: #2d3748;
}
.name-input:focus {
outline: none;
border-color: #3182ce;
box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.3);
}
@media (max-width: 768px) {
.content-wrapper {
flex-direction: column;
}
.video-section, .info-section {
flex: none;
width: 100%;
}
}
/* New styles moved from inline */
header {
background-color: #950833;
}
</style>
</head>
<header class="fixed top-0 left-0 w-full p-4 text-center shadow-md z-20">
<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" title="Go to Home">
<i class="fas fa-home" align="right"></i>
</a>
<a href="Game/avtar.html" class="bg-gray-700 hover:bg-gray-600 text-blue-400 p-2 rounded" title="Customize Avatar">
<i class="fas fa-user-circle" align="right"></i>
</a>
<a href="Certifications/Certification.html" class="bg-gray-700 hover:bg-gray-600 text-blue-400 p-2 rounded" title="Get Certified">
<i class="fas fa-certificate" align="right"></i>
</a>
</div>
</div>
</header>
<body class="text-white">
<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>
<!-- Main Content -->
<div class="content-wrapper">
<!-- Video Section (Left) -->
<section class="video-section">
<h2 class="text-2xl font-bold mb-4">Tutorial Video</h2>
<video controls class="rounded-lg mb-4">
<source src="tutorial.mp4" type="video/mp4">
</video>
</section>
<!-- Information Section (Right) -->
<section class="info-section">
<div class="mb-6">
<p class="mb-4">Level 1</p>
<a
href="Game/P_print.html"
class="bg-blue-500 text-white px-4 py-2 rounded w-full hover:bg-blue-600 transition-colors inline-block text-center mb-4"
title="Take Level 1 Quiz">
Take Quiz
</a>
<div class="live-teaching mt-4">
<h3 class="text-xl font-bold mb-2">Live Teaching</h3>
<p class="text-sm mb-3">Join our interactive live sessions with expert instructors</p>
<a
href="#schedule-session"
class="bg-green-500 text-white px-4 py-2 rounded w-full hover:bg-green-600 transition-colors inline-block text-center"
title="Schedule a Live Teaching Session">
Schedule Live Session
</a>
</div>
</div>
</section>
</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>
<!-- AI Chatbot Script -->
<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>
</body>
</html>