Example
Example
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>Media Showcase</title>
5
</head>
6
<body>
7
8
<header>
9
<h1>Nextsem Masterclass Series</h1>
10
</header>
11
12
<main>
13
<figure>
14
<video controls width="640" height="360" poster="cover.jpg">
15
<source src="masterclass.mp4" type="video/mp4">
16
<track src="subs_en.vtt" kind="subtitles" srclang="en" label="English" default>
17
</video>
18
<figcaption>Full Stack Web Development Overview</figcaption>
19
</figure>
20
21
<figure>
22
<audio controls>
23
<source src="interview.mp3" type="audio/mpeg">
24
</audio>
25
<figcaption>Senior Developer Career Podcast</figcaption>
26
</figure>
27
</main>
28
29
</body>
30
</html>
