-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (67 loc) · 3.3 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
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
<!DOCTYPE html>
<html lang="en" data-theme="html">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title data-i18="page-title">Simple video player</title>
<meta name="description" content="Simple video player for website">
<link rel="icon" href="assets/favicon/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" href="assets/favicon/favicon-32.png" sizes="32x32">
<link rel="icon" type="image/png" href="assets/favicon/favicon-16.png" sizes="16x16">
<link href="assets/favicon/favicon-96.png" rel="shortcut icon" type="image/x-icon">
<link href="assets/favicon/favicon-96.png" rel="icon" type="image/x-icon">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="assets/favicon/favicon-57.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/favicon/favicon-72.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/favicon/favicon-114.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/favicon/favicon-144.png">
<link rel="stylesheet" href="stylesheets/style.css">
</head>
<body class="body" data-theme="body">
<!--============ Main ============-->
<main class="main" id="main">
<!--============ Video ============-->
<section class="video section" id="video">
<div class="container container-video">
<h2 class="section-title" data-theme="section-title"><span data-i18="video">Simple video player</span></h2>
<div class="video-presentation">
<video class="video-viewer" preload="auto" poster="assets/img/wedding-videos-poster.jpg">
<source src="assets/video/video.mp4" type="video/mp4" />
<source src="assets/video/video.webm" type="video/webm" />
<p>To view this video please enable JavaScript, and consider upgrading to a
web browser that supports HTML5 video</p>
</video>
<button class="play-video-button" title="press to play video" data-theme="play-video-button"></button>
<!-- /.video-viewer -->
<div class="controls">
<div class="controls__first-line">
<button class="control-button play-icon" title="Click to play/pause video"></button>
<input class="timeline" type="range" value="0" min="0" max="100" step="0.05">
</div>
<div class="controls__second-line">
<button class="control-button volume-icon" title="Click to mute/unmute the sound."></button>
<input class="volume" type="range" value="40" min="0" max="100" step="1">
<button class="control-button fullscreen-icon" title="Click to fullscreen/exit fullscreen"></button>
</div>
</div>
<!-- /.controls -->
</div>
<!-- /.video-presentation -->
</div>
<!-- /.container -->
</section>
<!-- /.video section -->
</main>
<!-- /.main -->
<!--============ Footer ============-->
<footer class="footer container">
<p class="copyright">
<small>©</small>
<small>2022</small>
<a href="https://github.com/dobkir" target="_blank">dobkir</a>
</p>
</footer>
<!-- /.footer -->
<script src="./js/index.js"></script>
</body>
</html>