Okay, this is a little embarassing. I've forgotten how to embed a MIDI in an XHTML 1.0 webpage.
The player should be something viewers of my page can start, stop, or replay themselves as they please. I know--being a MIDI--I need to use an <object> element, but the file isn't playing, so I must be doing something wrong!
The code for the object thus far is:
`
<div id="Recording">
<object id="MIDI" type="audio/midi" width="100" height="100" data="./Recordings/MIDIs/puzzpal2.mid">
<param name="filename" value="./Recordings/MIDIs/puzzpal2.mid" />
<param name="autostart" value="false" />
<param name="loop" value="false" />
</object>
</div>
`