-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (55 loc) · 3.21 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Video Player</title>
<link rel="stylesheet" href="css/normalize.css">
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/mediaelement-and-player.min.js"></script>
<link rel="stylesheet" href="css/mediaelementplayer.css" />
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div id="container"> <!-- Container div starts -->
<div id="video"> <!-- Video div starts -->
<video>
<source src="video/video.mp4" type="video/mp4">
<source src="video/video.ogg" type="video/ogg">
<track src="captions.vtt" kind="subtitles" srclang="en" label="english">
</video>
</div> <!-- Video div ends -->
<div class="caption"> <!-- Caption div starts -->
<p>
<span data-start="0.120" data-end="4.130">Now that we've looked at the architecture of the internet, let's see how you might</span>
<span data-start="4.130" data-end="7.535"> connect your personal devices to the internet inside your house.</span>
<span data-start="7.535" data-end="11.270">Well there are many ways to connect to the internet, and</span>
<span data-start="11.270" data-end="13.960">most often people connect wirelessly.</span>
</p>
<p>
<span data-start="13.960" data-end="17.940">Let's look at an example of how you can connect to the internet.</span>
<span data-start="17.940" data-end="22.370">If you live in a city or a town, you probably have a coaxial cable for</span>
<span data-start="22.370" data-end="26.880">cable Internet, or a phone line if you have DSL, running to the outside of</span>
<span data-start="26.880" data-end="30.920">your house, that connects you to the Internet Service Provider, or ISP.</span>
<span data-start="32.100" data-end="34.730">If you live far out in the country, you'll more likely have</span>
<span data-start="34.730" data-end="39.430">a dish outside your house, connecting you wirelessly to your closest ISP, or</span>
<span data-start="39.430" data-end="41.190">you might also use the telephone system.</span>
</p>
<p>
<span data-start="42.350" data-end="46.300">Whether a wire comes straight from the ISP hookup outside your house, or</span>
<span data-start="46.300" data-end="49.270">it travels over radio waves from your roof,</span>
<span data-start="49.270" data-end="53.760">the first stop a wire will make once inside your house, is at your modem.</span>
<span data-start="53.760" data-end="56.380">A modem is what connects the internet to your network at home.</span>
<span data-start="56.380" data-end="58.800">A few common residential modems are DSL or</span>
</p>
</div> <!-- Caption div ends -->
</div> <!-- Container div ends -->
<script src="js/script.js"></script>
<script>
$('video').mediaelementplayer({
features: ['playpause','current', 'progress','duration', 'volume', 'fullscreen'],
stretching: 'responsive',
});
</script>
</body>
</html>