-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
36 lines (32 loc) · 1.08 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>My Audio Playlist</title>
<style>
body { font-family: sans-serif; display: flex; flex-direction: column; align-items: center; padding: 50px; background-color: #f4f4f4; }
.audio-container { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin-bottom: 20px; width: 350px; }
h2 { color: #333; font-size: 18px; margin-bottom: 10px; }
audio { width: 100%; }
</style>
</head>
<body>
<h1>나의 플레이리스트</h1>
<div class="audio-container">
<h2> vocal</h2>
<audio controls src="vocal.mp3"></audio>
</div>
<div class="audio-container">
<h2> drum</h2>
<audio controls src="drum.mp3"></audio>
</div>
<div class="audio-container">
<h2> bass</h2>
<audio controls src="bass.mp3"></audio>
</div>
<div class="audio-container">
<h2> other</h2>
<audio controls src="other.mp3"></audio>
</div>
</body>
</html>