forked from TeachMaster-SAI/TeachMaster-SAI.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
187 lines (166 loc) · 6.17 KB
/
index.html
File metadata and controls
187 lines (166 loc) · 6.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TeachMaster · Vibe Teaching</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #ffffff;
min-height: 100vh;
color: #1a1a1a;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 80px 20px;
}
.header {
text-align: center;
margin-bottom: 80px;
}
.title {
font-size: 4rem;
font-weight: 300;
color: #1a1a1a;
letter-spacing: -2px;
margin-bottom: 20px;
}
.subtitle {
font-size: 1.3rem;
color: #666;
font-weight: 300;
letter-spacing: 0.5px;
}
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 40px;
margin-top: 60px;
}
.video-card {
background: #fafafa;
border-radius: 8px;
padding: 32px;
border: 1px solid #e5e5e5;
transition: all 0.3s ease;
}
.video-card:hover {
border-color: #d1d1d1;
background: #f5f5f5;
}
.video-wrapper {
position: relative;
width: 100%;
border-radius: 4px;
overflow: hidden;
margin-bottom: 24px;
}
video {
width: 100%;
height: auto;
display: block;
}
.video-title {
font-size: 1.5rem;
font-weight: 500;
color: #1a1a1a;
margin-bottom: 12px;
letter-spacing: -0.5px;
}
.video-description {
color: #666;
line-height: 1.6;
font-size: 1rem;
font-weight: 400;
}
@media (max-width: 768px) {
.title {
font-size: 2.5rem;
}
.video-grid {
grid-template-columns: 1fr;
}
.container {
padding: 20px 15px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1 class="title">TeachMaster · Vibe Teaching</h1>
<p class="subtitle">Innovative Teaching Methods & Educational Content</p>
</div>
<div class="video-grid">
<div class="video-card">
<div class="video-wrapper">
<video controls poster="">
<source src="example.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<h3 class="video-title">Introduction to TeachMaster</h3>
<p class="video-description">Discover the fundamentals of modern teaching methodologies and how TeachMaster revolutionizes the educational experience.</p>
</div>
<div class="video-card">
<div class="video-wrapper">
<video controls poster="">
<source src="example.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<h3 class="video-title">Interactive Learning Techniques</h3>
<p class="video-description">Learn how to engage students through interactive teaching methods that promote active participation and deeper understanding.</p>
</div>
<div class="video-card">
<div class="video-wrapper">
<video controls poster="">
<source src="example.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<h3 class="video-title">Digital Classroom Management</h3>
<p class="video-description">Master the art of managing digital classrooms with effective strategies for online and hybrid learning environments.</p>
</div>
<div class="video-card">
<div class="video-wrapper">
<video controls poster="">
<source src="example.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<h3 class="video-title">Student Assessment Strategies</h3>
<p class="video-description">Explore innovative assessment methods that provide meaningful feedback and support student growth and development.</p>
</div>
<div class="video-card">
<div class="video-wrapper">
<video controls poster="">
<source src="example.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<h3 class="video-title">Building Learning Communities</h3>
<p class="video-description">Create collaborative learning environments that foster peer-to-peer learning and build strong educational communities.</p>
</div>
<div class="video-card">
<div class="video-wrapper">
<video controls poster="">
<source src="example.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<h3 class="video-title">Technology in Education</h3>
<p class="video-description">Integrate cutting-edge educational technology to enhance learning experiences and prepare students for the digital future.</p>
</div>
</div>
</div>
</body>
</html>