-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattributions.html
152 lines (144 loc) · 6.47 KB
/
attributions.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!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>Attributions - Rock Paper Lobster!</title>
<!-- css -->
<link rel="stylesheet" href="assets/css/attributions.css">
</head>
<body>
<div class="container">
<div class="glass-card">
<div class="header">
<h1>Rock Paper Lobster</h1>
<p>I would like to thank the following creators for allowing use of their creations:</p>
</div>
<!-- end of header -->
<div class="items">
<div class="attrib-item">
<audio src="assets/audio/121511__damonmensch__cricket-sound.ogg" controls></audio>
<span>
Title:
<a href="https://freesound.org/people/damonmensch/sounds/121511/#comments">Cricket Sound</a>
</span>
<span>
Owner:
<a href="https://freesound.org/people/damonmensch/">damonmensch</a>
</span>
<span>
License:
<a href="https://creativecommons.org/licenses/by/3.0/">
<abbr title="Creatice Commons Attribution 3.0 Unported"> CC BY 3.0</abbr>
</a>
</span>
</div>
<!-- end cricket sound -->
<div class="attrib-item">
<audio src="assets/audio/bensound-jazzyfrenchy.ogg" controls></audio>
<span>
Title:
<a href="https://www.bensound.com/royalty-free-music/track/jazzy-frenchy">Jazzy Frenchy</a>
</span>
<span>
Owner:
<a href="https://www.bensound.com/about">Benjamin Tissot aka Bensound</a>
</span>
<span>
License:
<a href="https://creativecommons.org/licenses/by-nd/3.0/">
<abbr title="Creatice Commons Attribution-NoDerivs 3.0 Unported"> CC BY-ND 3.0</abbr>
</a>
</span>
</div>
<!-- end jazzy french -->
<div class="attrib-item">
<audio src="assets/audio/mixkit-flock-of-wild-geese-20.ogg" controls></audio>
<span>
Title: Flock of Wild Geese
</span>
<span>
Owner:
<a href="https://mixkit.co/">Mixkit.co</a>
</span>
</div>
<!-- end wild geese -->
<div class="attrib-item">
<audio src="assets/audio/mixkit-player-losing-or-failing-2042.ogg" controls></audio>
<span>
Title: Player Losing or Failing
</span>
<span>
Owner:
<a href="https://mixkit.co/">Mixkit.co</a>
</span>
</div>
<!-- end player losing / failing -->
<div class="attrib-item">
<audio src="assets/audio/mixkit-retro-game-notification-212.ogg" controls></audio>
<span>
Title: Retro Game Notification
</span>
<span>
Owner:
<a href="https://mixkit.co/">Mixkit.co</a>
</span>
</div>
<!-- end retro game notif -->
<div class="attrib-item">
<audio src="assets/audio/mixkit-small-group-cheer-and-applause-518.ogg" controls></audio>
<span>
Title: Small Group Cheer and Applause
</span>
<span>
Owner:
<a href="https://mixkit.co/">Mixkit.co</a>
</span>
</div>
<!-- end applause -->
<div class="attrib-item">
<audio src="assets/audio/mixkit-video-game-treasure-2066.ogg" controls></audio>
<span>
Title: Video Game Treasure
</span>
<span>
Owner:
<a href="https://mixkit.co/">Mixkit.co</a>
</span>
</div>
<!-- end video game treasure -->
<div class="attrib-item">
<audio src="assets/audio/zapsplat_multimedia_button_click_005_53866.ogg" controls></audio>
<span>
Title:
<a href="https://www.zapsplat.com/music/organic-button-click-good-for-apps-games-ui-software-etc-5/">Organic Button Click, Good For Apps, Games, UI, Software etc 5</a>
</span>
<span>
Owner:
<a href="https://www.zapsplat.com/">Zapsplat</a>
</span>
</div>
<!-- end btn clicked -->
<figure class="attrib-item">
<img src="assets/img/pexels-tirachard-kumtanom-347139.jpg" alt="Brown Wooden Panel">
<figcaption>
<span>
Title:
<a href="https://www.pexels.com/photo/brown-wooden-panel-347139/">Brown Wooden Panel</a>
</span>
<span>
Owner:
<a href="https://www.pexels.com/@tirachard-kumtanom-112571">Tirachard Kumtanom</a>
</span>
</figcaption>
</figure>
<!-- end figure -->
</div>
<a href="index.html">Back to Game</a>
</div>
<!-- end of glass card -->
</div>
<!-- end of container -->
</body>
</html>