Background MIDI Music
Background MIDI music involved embedding Musical Instrument Digital Interface files into webpages that would automatically play instrumental music when visitors loaded the site. MIDI files were popular because of their small file sizes compared to audio recordings, making them practical for the slow dial-up connections of the 1990s.
“html
<html>
<head>
<title>My Cool Homepage</title>
</head>
<body background="stars.gif">
<embed src="song.mid" autostart="true" hidden="true" loop="true">
<bgsound src="song.mid" loop="infinite">
<h1>Welcome to My Website!</h1>
</body>
</html>
“
Why Background MIDI Music Matters
Background MIDI music represented early attempts to create immersive multimedia experiences on the web, despite technical limitations and user experience problems like unexpected sound and inability to control playback. The widespread use and eventual abandonment of auto-playing background music helped establish modern web design principles about user control, accessibility, and the importance of giving users choice over multimedia content.