-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (26 loc) · 822 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=1">
<title>Home</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="main-container">
<div class="card">
<div class="image-container">
<img class="image" id="image" src="imagen/maxresdefault.jpg">
</div>
<div class="controls-container">
<button id="playPauseBTN" onclick="playPause()">Play ►</button>
<button onclick="stop()">Stop ▋</button>
</div>
</div>
</div>
<audio id="audio">
<source src="audio/significado de la vida 1.mp3" type="audio/mpeg">
</audio>
<script src="js/script.js"></script>
</body>
</html>