Coding notes
You can add as many HTML tags together as you like - but they must be kept symmetrical:
<p align="left"><font color="red"><u><i>Your text here</i></u></font></p>
Your text here
Several attributes can be placed inside one tag:
<font color="yellow" size="4">Your text here</font> Your text here
Several attributes can be placed inside one style tag:
<span style="text-decoration: overline; background-color: magenta; letter-spacing: 5px;">Your text here</span>
Your text here
This can also be applied to a marquee:
<font color="hotpink" size="7"><marquee scrollamount="3" scrolldelay="40"> Your text here, there and everywhere </marquee></font> Alternatively:
<marquee style="color:hotpink; font-size:20pt" scrollamount="3" scrolldelay="40"> Your text here, there and everywhere </marquee>
Changing the color of a list:
<ul type="disc" style="color:red">
<li>Alice Cooper</li>
<li>Bon Jovi</li>
<li>Enter Shikari</li>
</ul>
- Alice Cooper
- Bon Jovi
- Enter Shikari
|