HTML in Your Band Profile Help


The FortWayneMusic.com Band Directory Profiles will accept HTML tags in some of the fields. You may use these tags to better style the content that is displayed in your profiles. The fields that currently allow HTML are:

Allowed HTML



Tag Name

Opening Tag

Closing Tag

Allowed Properties

Paragraph <p> </p>  
Unordered List <ul> </ul>  
Ordered List <ol> </ol>  
  • List Item
  • <li> </li>  
    Link * <a> </a> href, target
    Line Break <br /> - none -  
    Font <font> </font> size,color
    Bold <b> <b>  
    Italic <em> </em>  
    Underline <u> </u>  
    * If you put links on your profile the MUST have the "target" set to "_blank" or the link will be removed! | Example: <a href="www.page.com" target="_blank"> My Link </a>

    Example


     

    This is what a paragraph looks like. I am just going to ramble on about this nonsense until my example is over. When will that be? I really don't know.

    This is the start of another paragraph. This is done by starting a new set of paragraph tags. Take a look at the lists below.

    1. Unordered List Item
    2. Unordered List Item
    3. Unordered List Item
    4. Unordered List Item
    5. Unordered List Item

    This is a link inside of a paragraph that will open up a new browser window and take you to the home page.

    This paragraph will include the tags that will make bold words, italic words, and underlined words. Beneath this is a line break.


    This paragraph will explore the font tag and its properties. You can change the size of words and the color of words.

    The Code



     

    <p>This is what a paragraph looks like. I am just going to ramble on about this nonsense until my example is over. When will that be? I really don't know.</p>

    <p>This is the start of another paragraph. This is done by starting a new set of paragraph tags. Take a look at the lists below.</p>

    <ul>
    <li>Unordered List Item</li>
    <li>Unordered List Item</li>
    <li>Unordered List Item</li>
    <li>Unordered List Item</li>
    <li>Unordered List Item</li>
    </ul>

    <ol>
    <li>Unordered List Item</li>
    <li>Unordered List Item</li>
    <li>Unordered List Item</li>
    <li>Unordered List Item</li>
    <li>Unordered List Item</li>
    </ol>

    <p>This is a <a href="http://www.fortwaynemusic.com" target="_blank">link</a> inside of a paragraph that will open up a new browser window and take you to the home page.</p>

    <p>This paragraph will include the tags that will make<strong> bold words</strong>, <em>italic words</em>, and <u>underlined words</u>. Beneath this is a line break.</p>

    <br />

    <p>This paragraph will explore the font tag and its properties. You can change the <font size="6">size of words</font> and the <font color="#99FF33">color of words</font>.</p>