How do I add midi music to my web page?

Use the tag below.

The tag above plays the music.mid once. If you want this song to continue without stopping, use loop=“infinite” instead of loop=“1”, which only plays it once. To get this to work with Netscape and Internet Explorer, use the embed tag similar to the example below.

Which would give you the example below.

How do I make a picture as a background on my web pages?

Point the body background to the name of your image you want to use as the background, as shown below. This body line should be the first line after yourtag.

You can also have the background image fixed, so it does not move when using the scroll bar in the browser. To do this, add the BGPROPERTIES tag as shown below.

How do I make it so that someone can mail me by clicking text?

Use the mailto command in your a href link tag as shown below.

Mail Computer Hope

The example above would create a link similar to the one shown below.

Mail Computer Hope

How do I add scrolling text to my page?

Keep in mind not all browsers support scrolling text. However, to do this add a tag similar to the example below.

THIS WOULD SCROLL

The example above would create the below scrolling text. If your browser supports scrolling text, the example below should be scrolling.

THIS WOULD SCROLL

See our tag for further information on this HTML tag.

How do I do multiple colors of text?

To do the multicolor text, adjust the color of your font tag as shown below.

blue

The example above would make the text blue. In fact, you can do all the major colors. See our list of all valid colors for other color options.

Use the a href link tag around the IMG image tag as shown below.

In the past, it was common to use the tag to change text properties, including text color. The tag is deprecated in modern HTML, however. Always use CSS to change your font colors, as in the example above. For help with changing the font properties, see: How to change the font type, size, and color on a web page.

The example above would give you the below clickable image link.

Add the border:“none” style to your img tag as shown below.

The code above would give you the example below.

How do I make it so that my web page is one solid color in the background without using an image file?

Change the BGCOLOR (short for background color) in your body tag as shown below.

The example above makes the background of the page white. However, you could do blue, red, or any HTML color code.

How do I align pictures so that one may be higher or lower than the other?

Use the align statement in your img src tag as shown below.

Anything after the image is aligned to the top of the image, as shown below.

Also, instead of top, you can specify middle or bottom, and other values.

Specify the complete URL in the a href tag as shown below.

Visit ComputerHope

Replace our address with the address you would like to link. Where it says “Visit ComputerHope,” replace this with what you want to name the link.

  • HTML and web design help and support.