-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
27 lines (27 loc) · 904 Bytes
/
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
<html>
<head>
<title>Ulti Media Player</title>
<link rel="shortcut icon" href="./assets/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<header>
<h1>Ulti Media Player</h1>
<p>An extensible and cool media player.</p>
</header>
<main class="container">
<video class="movie">
<source
src="https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
/>
</video>
<button id="togglePlay">Toggle Play</button>
<button id="toggleMute">Toggle Mute</button>
<button id="increaseVolumen">Increase Volumen</button>
<button id="decreaseVolumen">Decrease Volumen</button>
</main>
<script type="module" src="./index.js"></script>
</body>
</html>