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:
- Band Members
- Band Bio
Allowed HTML
Tag Name |
Opening Tag |
Closing Tag |
Allowed Properties |
| Paragraph | <p> | </p> | |
| Unordered List | <ul> | </ul> | |
| Ordered List | <ol> | </ol> | |
| <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> |
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.
- Unordered List Item
- Unordered List Item
- Unordered List Item
- Unordered List Item
- Unordered List Item
- Unordered List Item
- Unordered List Item
- Unordered List Item
- Unordered List Item
- 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>