Home    Forum    Downloads    Album    Search    Medals    FAQ    Register    Log in
Navigation
  Menu
  Forum
  News
  Information
  Users & Groups
  Tools
 
Poll
Is The HTML Guide Useful?
  Yes
  No
  Hardly
You must login to vote
 
Dshadow's HTML Tutorial
Basic HTML
Bold Text <b>Bold Text</b>
Italic Text <i>Italic Text</i>
Html Color Chart: :HTML Color Chart

Making URL Links: This: <a href="www.darkshadowentertainment.org">DSE</a> Makes This:DSE

Font Attributes:
=Attribute "Value" Description
size= "Num. Value 1-7" Size of your text, 7 is biggest
color= "rgb,name,or hexidecimal" Change font color
face= ""name of font"" Change the font type
 
Font Size & Colour
This Becomes This:
<font size="2">Hello World</font></td> Hello World
<font size="4">Hello World</font></td> Hello World
<font size="6">Hello World</font> Hello World
<font size="8"color="maroon">Hello World</font> Hello World
<font size="8"color="#FF9900">Hello World</font> Hello World
A HTML Color Chart may be found on the link above ^
 
Aligning Images

This Code Produces This:
<IMG SRC="alinebox.png " ALT="Box1" ALIGN=LEFT> BoxLook! the text is on the left!
<IMG SRC="alinebox.gif" ALT="Box2" ALIGN=RIGHT> Box2Look! the text is on the right!
<IMG SRC="alignbox3.gif" ALT="align box" ALIGN=MIDDLE> align box Look! the text is in the middle!
 
HTML Marquee Codes
Slide-in text (with text stopping): Enter Slide Text HERE <marquee behavior="slide" direction="left">Your slide-in text goes here</marquee>
Continuous scrolling text: Enter Continuous Scrolling Text HERE <marquee behavior="scroll" direction="left">Your scrolling text goes here</marquee>
Text bouncing back and forth: Enter Bouncing Text HERE <marquee behavior="alternate">Your bouncing text goes here</marquee>
Text Scrolling Upwards: Your upward scrolling text goes here <marquee behavior="scroll" direction="up">Your upward scrolling text goes HERE</marquee>
Change the Scrolling Speed: Slow scroll speed Medium scroll speed Fast scroll speed <marquee behavior="scroll" direction="left" scrollamount="1">Slow scroll speed</marquee> <marquee behavior="scroll" direction="left" scrollamount="10">Medium scroll speed</marquee> <marquee behavior="scroll" direction="left" scrollamount="20">Fast scroll speed</marquee>