blob: 825af22a00cea485e75e67bf6672d1487e4c0781 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
$title = "Music";
require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
?>
<p>
The following links lead to music I've recorded. Anything marked with "*" is improv or my own
composition.
</p>
<ul>
<li>
<h3><a href="angelfish.mp3">Angelfish</a></h3>
</li>
<li>
<h3><a href="music/dne.html">09/15/22 *</a></h3>
</li>
</ul>
<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
|