HTML Interviews
HTML Interview
UNIX's mv (`move') command won't handle wildcard filenames. However, there's a program called htmaddl (for `HTM-add-"L"'), so you can login and type htmaddl. This will rename all .htm files to .html

If you haven't got this program on your UNIX machine, you can type it into a file called htmaddl:

#! /bin/sh

for f in *.htm; do
base=`basename $f .htm`
mv $f $base.html
done

After saving it and exiting your editor, make it executable by typing the command
chmod ugo+x htmaddl
Best of all, move it into your ~/bin directory, or ask your WebMeister to put it in /usr/local/bin so everyone can use it.
How do I put sounds for older versions of Internet Explorer? 
For older versions of Internet Explorer, this technique was used <BG SOUND="sound.ext">.
Can I use any HTML in the box? 
Yes. Any HTML tag that your browser supports will work in the box. So you can carry tags from chapters to chapters and mix and match...