-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (32 loc) · 1.13 KB
/
Copy pathindex.html
File metadata and controls
45 lines (32 loc) · 1.13 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
40
41
42
43
44
45
---
title: Audio Visualizer
---
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Dynamic page title -->
<title>{{ page.title }}</title>
<!-- Set favicon -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- Google Fonts embed -->
<link href="https://fonts.googleapis.com/css?family=Space+Mono" rel="stylesheet">
<!-- Styles for the screen -->
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body class="container">
<audio id="sound" loop></audio>
<label id="guide">
Drop a <a href="https://en.wikipedia.org/wiki/HTML_audio#Supported_audio_coding_formats">supported audio file</a>
</label>
<div id="colophon">
<p>Made by <a href="https://mrbacay.com">Samuel Bacay</a>.</p>
</div>
<script src="/assets/js/three.min.js"></script>
<script src="/assets/js/OrbitControls.js"></script>
<script src="/assets/js/simplex-noise.js"></script>
<script src="/assets/js/visualizer.js"></script>
</body>
</html>