-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (52 loc) · 2.31 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Радио плейър</title>
<link rel="shortcut icon" href="favicon.ico" />
<!-- CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link href="radios.css" rel="stylesheet">
<!-- JS -->
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js" integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/hls.js/1.0.7/hls.min.js"></script>
<script src="radios.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YVRLT75E6E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YVRLT75E6E');
</script>
</head>
<body class="text-center">
<form class="form-signin">
<h1 class="h3 mb-3 font-weight-normal">Радио плейър</h1>
<div class="form-group">
<select class="form-control" id="radios">
<option disabled selected>Избери радио</option>
<option>БНР Хоризонт</option>
<option>БНР Шумен</option>
<option>Радио 1</option>
<option>Радио 1 Рок</option>
<option>БГ Радио</option>
<option>Вероника</option>
<option>Веселина</option>
<option>The Voice</option>
<option>Energy</option>
<option>N-Joy</option>
<option>City</option>
<option>Fresh!</option>
<option>Мая</option>
</select>
</div>
<div class="slidecontainer">
<label>Сила на звука</label>
<input type="range" min="0" max="100" value="50" class="slider" id="slider">
</div>
<label class="p-4"><b>ВАЖНО!</b> Днес Ванката черпи 😊</label>
</form>
</body>
</html>