-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayer_projekt.html
More file actions
46 lines (46 loc) · 1.18 KB
/
player_projekt.html
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Audio přehrávač – Projektová výuka</title>
<style>
body {
font-family: sans-serif;
background-color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.player-container {
background: #E0E6F4;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
text-align: center;
}
h1 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
audio {
width: 100%;
max-width: 400px;
background-color: #E0E6F4;
border-radius: 0.5rem;
}
</style>
</head>
<body>
<div class="player-container">
<h1>🎧 Poslechněte si audio verzi článku: Jak na projektovou výuku</h1>
<audio controls>
<source src="https://github.com/vividbooks/google-docs-copy-button/raw/main/Jak_na_projektovou_vyuku.mp3" type="audio/mpeg">
Váš prohlížeč nepodporuje přehrávání audio souborů.
</audio>
</div>
</body>
</html>