-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·51 lines (44 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<META NAME="viewport" CONTENT="width=device-width,initial-scale=1">
<title>Mapa Rádio Capital</title>
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body>
<div id="modal" class="player">
<div class="playerWrapper">
<ul id="play" class="play">
<li></li>
<li class="title"></li>
<li class="content"></li>
<li id="audioDesktop" class="audio">
<audio controls controlsList="nodownload">
<source src="" type="audio/mpeg">
</audio>
</li>
</ul>
<button id="close">x</button>
</div>
</div>
<div id="playerMobile" class="player mobile">
<div class="playerWrapper">
<ul id="playMobile" class="play">
<li></li>
<li id="audioMobile" class="audio">
<audio controls controlsList="nodownload">
<source src="" type="audio/mpeg">
</audio>
</li>
<li class="title"></li>
</ul>
</div>
</div>
<div id="main">
<div id="markers"></div>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>