html
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
<!-- Created by JaScript -->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<video id="film" controls autoplay>
<source src="http://www.sololearn.com/uploads/video.mp4" type="video/mp4">
<source src="http://www.sololearn.com/uploads/video.ogg" type="video/ogg">
Video is not supported by your browser
</video>
<!--><br />When the video ends you will be redirected to another website</!-->
<script>
let film = document.getElementById("film");
film.onended = function() {
//this is a function what will be used for redirection when the video ends
console.log("Hello, world!");
window.location = "https://www.sololearn.com";
}
</script>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run