-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.44 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<title>Record Player</title>
</head>
<body>
<!-- CSS-only dev control: play/pause toggle -->
<input type="checkbox" id="play-toggle" class="sr-only" aria-label="Toggle animation">
<label for="play-toggle" class="play-toggle">
<span class="play-toggle__text play">Play</span>
<span class="play-toggle__text pause">Pause</span>
</label>
<main role="img" aria-label="CSS illustration of a vinyl record player with a spinning record and tonearm.">
<div class="record-player" aria-hidden="true">
<div class="record-player__chassis">
<div class="record-player__platter">
<div class="record-player__record">
<div class="record-player__glare"></div>
<div class="record-player__label" data-label="001">
</div>
</div>
</div>
<div class="record-player__pivot">
<div class="record-player__arm">
<div class="record-player__cartridge"></div>
</div>
</div>
</div>
</div>
</main>
</body>
</html>