-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmusic.html
More file actions
29 lines (29 loc) · 878 Bytes
/
music.html
File metadata and controls
29 lines (29 loc) · 878 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/site.css" />
</head>
<body>
<section id="music" aria-labelledby="music-title">
<p class="kicker">Music</p>
<h2 id="music-title">Guitarist & band</h2>
<div class="grid">
<div class="card">
<h3>Latest track</h3>
<p>Modern rock with a touch of funk. <a href="#">Listen on your platform</a>.</p>
<audio controls src="/assets/audio/sample.mp3" style="width:100%"></audio>
</div>
<div class="card">
<h3>Live</h3>
<p>We play across Madrid and Europe — join the next show!</p>
<ul>
<li>Fri • Sala Sol (Madrid)</li>
<li>Sat • Barcelona</li>
</ul>
</div>
</div>
</section>
</body>
</html>