-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (62 loc) · 2.36 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mix Cassette</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/boxicons.min.css">
</head>
<body>
<main class="main">
<audio id="myAudio">
<source src="src/Lumina Solis.mp3" type="audio/mpeg">
</audio>
<div class="tape">
<div class="tapesticker">
<audio id="player" src=""></audio>
<!--play e pause-->
<button id="playPauseButton" onclick="togglePlayPause()">
<svg width="24" height="20" viewBox="0 0 24 24">
<path id="playIcon" d="M8 5v14l11-7z"></path>
</svg>
</button>
<div id="letterleft">A</div>
<div id="letterright">B</div>
<div id="compact">COMPACT CASSETTE <br> C90</div>
<div class="tapeheader">
<div id="titles">
<h1 class="title">MIX CASSETTE</h1>
<h2 class="author">NATHAN MACIEL</h2>
</div>
<div class="tapegrad">
<div id="grad"></div>
</div>
<div class="ribbon">
<div class="wrapleft">
<div id="ribbonleft"></div>
</div>
<div class="wrapright">
<div id="ribbonright"></div>
</div>
</div>
<span class="track"><br> <br>ARTISTA: LUMINA SOLIS © <br> MUSICA: <br> Печь горяча, а за окном метель метёт</span>
</div>
<div class="footerwrapper">
<div class="trapezoid">
<div id="lefthole"></div>
<div id="righthole"></div>
<div id="centerhole"></div>
<div id="centersquare"></div>
</div>
</div>
</div>
</div>
<!--footer-->
<footer class="footer">
<p>© 2023 BY: NATHAN MACIEL <br> MADE WITH ❤️</p>
</footer>
<script src="javascript/script.js"></script>
</body>
</html>