-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (30 loc) · 906 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
28
29
30
31
32
33
34
35
<html>
<head>
<title>MediaPlayer.js</title>
<link
rel="stylesheet"
href="https://necolas.github.io/normalize.css/8.0.1/normalize.css"
/>
<link rel="stylesheet" href="./assets/style.css" />
</head>
<body style="height: 2000px;">
<header>
<h1>MediPlayer.js</h1>
<p>An extensible media player.</p>
</header>
<main class="container">
<video class="movie">
<source src="./assets/BigBuckBunny.mp4" />
</video>
<button id="btn-video-play">Play/Pause</button>
<button id="btn-video-mute">Unmute/Mute</button>
</main>
<hr/>
<h1>Precio del Bitcoin</h1>
<p><em id="price">$0.00</em></p>
<input type="text" id="value">
<script src="./assets/observer.ts"></script>
<script src="./assets/decorator.ts"></script>
<script type="module" src="./assets/script.ts"></script>
</body>
</html>