|
|
Textareas
|
        Another way to add text to a webpage is a textarea. A textarea is basically a place where you can change the background of the area specified, and the area can be specified in pixels or percents. This style lets you put practically any kind of HTML in it. Just copy and paste the code and replace the bold letters with your own stuff.
TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
<ilayer name="scroll1"><div id="scroll3" style="width:NUMBER;height:NUMBER; background-color:COLOR; overflow:auto">TEXT HERE</div></textarea>
|
|
|
Marquees
|
        Marquees are sets of text that scroll accross the page by themselves. Here are examples, and again, replace NUMBER with pixels or percentages. Just copy and paste the HTML.
Regular Marquee
<marquee>TEXT HERE</marquee>
Bouncy Marquee
<marquee behavior="alternate">TEXT HERE</marquee>
Marquee with background color
<marquee bgcolor="COLOR">TEXT HERE</marquee>
Marquee Direction
<marquee direction="right, left, up, or down">TEXT HERE</marquee>
Marquee Width and Height
<marquee width="NUMBER" height="NUMBER">TEXT HERE</marquee>
Marquee Speed
<marquee scrollamount="NUMBER">TEXT HERE</marquee>
Combining It All
|
|
|
|