-
Notifications
You must be signed in to change notification settings - Fork 6
/
course.html
109 lines (107 loc) · 1.62 KB
/
course.html
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
max-width: 1024px;
margin: auto;
font-family: sans-serif;
}
video {
width: 800px;
}
iframe {
width: 800px;
height: 450px;
}
</style>
</head>
<body>
<h1 data-olx-course="mu" data-olx-org="overhangio" data-olx-url_name="session1">
My course title
</h1>
<h2>
Chapter 1
</h2>
<h3>
Sequential 1.1
</h3>
<h4>
Syllabus
</h4>
<section data-mu-type="video">
<h5>
Video
</h5>
<video controls>
<source src="https://s3.amazonaws.com/edx-course-videos/edx-edx101/EDXSPCPJSP13-H010000_100.mp4" type="video/mp4">
</source>
</video>
</section>
<h5>
Some html content
</h5>
<p>
Each one of these paragraphs should result in a different
<code>
<p>
</code>
tag.
</p>
<p>
We can even include images here:
</p>
<p>
<img src="https://www.google.com/images/logo.png"/>
</p>
<p>
Raw code:
</p>
<pre><code>import base64
base64.decodebytes(b'UmFjbGV0dGUgY2hlZXNlIGlzIHRoZSBiZXN0')</code></pre>
<h4>
Problems
</h4>
<section data-mu-type="mcq">
<h5>
Multiple choice question
</h5>
<p>
What is the answer to Life, the Universe, and Everything?
</p>
<ul>
<li>
✅ 6 x 7
</li>
<li>
❌ 666
</li>
<li>
❌ 0
</li>
<li>
✅ 42
</li>
</ul>
</section>
<section data-mu-type="ftq">
<h5>
Free text question
</h5>
<p>
How many legs does a healthy snake have?
</p>
<ul>
<li>
None
</li>
<li>
Zero
</li>
<li>
0
</li>
</ul>
</section>
</body>
</html>