diff options
| -rw-r--r-- | img/bg.jpg | bin | 0 -> 43409 bytes | |||
| -rw-r--r-- | index.html | 17 | ||||
| -rw-r--r-- | style.css | 8 |
3 files changed, 25 insertions, 0 deletions
diff --git a/img/bg.jpg b/img/bg.jpg Binary files differnew file mode 100644 index 0000000..68021ed --- /dev/null +++ b/img/bg.jpg diff --git a/index.html b/index.html new file mode 100644 index 0000000..26a2baf --- /dev/null +++ b/index.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<head> + <title>Visual Audio Art</title> + <link rel="stylesheet" type="text/css" href="style.css"> +</head> +<body> + <!-- TODO : Fast travel, SOUNDS --> + <h1>MIDI Art, and other forms of audio GFX</h1> + <h2>MIDI notes pixel art</h2> + <h2>Waveform art</h2> + <h2>Oscilloscope shenanigans</h2> + <h2>Audio visualizers</h2> + <h3>Graphs</h3> + <h3>Circles</h3> + <h3>Windows Media Player</h3> + <footer>Submission for the Surf Club E-Zine #2, written by <a href="https://marcellus.cc">>Marcellus<</a></footer> +</body> diff --git a/style.css b/style.css new file mode 100644 index 0000000..951a020 --- /dev/null +++ b/style.css @@ -0,0 +1,8 @@ +body { + background: url("img/bg.jpg"); + color: beige; +} + +h1 { + filter: drop-shadow(0.4em 0.4em 0 #a794ff); +} |
