HTML hints


Need help with HTML? Look here for help!

 

Text Mark-Up

 

<b> - will make it bold - </b>

<i> - will make it italic - </i>

<u> - will make it underlined - </u>

 

Lists

 

Write <ul> to start an unordered list. Use </ul> to end it. Use <li> for each point.

 

Ex:

<ul><li>Pie<li>Dutch Babies<li>Whole Wheat Pancakes</ul>

gets you:

 

Write <ol> to start an ordered list. Use </ol> to end it. Use <li> for each point.

 

Ex:

<ol><li>Preheat the Oven<li>Make the Dough<li>Bake the Dough</ol>

gets you:

  1. Preheat the Oven

  2. Make the Dough

  3. Bake the Dough

 

Colors

<font color=teal>BLAH</font> gets you this: BLAH

 

Music

 

If you wanna see a player like this, find a .mp3, or another music file, and paste it in instead of what I have. It will look like this:

 

<p><bgsound src="http://images.neopets.com/mp3/meepitjuicebreak.mp3" loop=infinite> <p>

 

And the code is: <embed src="http://images.neopets.com/mp3/meepitjuicebreak.mp3" width=200 height=40 loop=true> <noembed> <bgsound src="http://images.neopets.com/mp3/meepitjuicebreak.mp3" loop=infinite> </noembed>