ForumCommunity

Wiki - HTML

    It is a language that can be used in the posts of the forum and in the administrative panels to format text and images.

    The basic element of the language is the tag, a keyword enclosed between angular parenthesis
    example:
    HTML
    <br>

    Often the informations, on which the tag "acts", must be enclosed between an opening tag and a closing tag, this last stated using the slash (/) after <.
    example:
    HTML
    <b>bold text</b>


    Common HTML tags

    Head of line
    HTML
    <br>

    Line
    HTML
    <hr>

    Image image
    HTML
    <img src="http://image_address">
    the image must be online

    Connecting to a web page or a file
    HTML
    <a href="http://site_address">text</a>


    Connecting to a point of the page
    HTML
    <a name="target"></a>
    HTML
    <a href="#target">text</a>




    Image with link image
    HTML
    <a href="http://site_address"><img src="http://image_address"></a>


    Centering an image or a text
    HTML
    <div align="center">image/text</div>


    Image or text in motion
    HTML
    <marquee direction="up" scrollAmount=1 height="30" width="70%">image/text</marquee>

    direction indicates the direction
    scrollAmount indicates the speed
    height is the height of the scroll area
    width is the width of the scroll area compared to the width of the page

    Image or text in motion that stops when the mouse passes
    HTML
    <marquee onmouseover="this.stop()" onmouseout="this.start()">image/text</marquee>
    this code can't be inserted in the signature

    Image or text in motion that slows when the mouse passes
    HTML
    <marquee scrollamount='5' onMouseover='this.scrollAmount=1' onMouseout='this.scrollAmount=5'>imagie/text</marquee>


    Bold text
    HTML
    <b>text</b>


    Italics text
    HTML
    <i>text</i>


    Underlined text
    HTML
    <u>text</u>


    Strikethrough text
    HTML
    <s>text</s>


    Text color
    HTML
    <font color="color">text</font>


    Text size
    HTML
    <font size="size">text</font>


    Text font
    HTML
    <font face="font">text</font>


    Changing text color, size, font
    HTML
    <font color="color" size="size" face="font">text</font>


    Text with halo (visible only if you use Internet Explorer)
    HTML
    <div style="width:100%;filter:glow(color=color)">text</div>


    Vanished text (visible only if you use Internet Explorer)
    HTML
    <div style="width:100%;filter:blur">text</div>


    List
    HTML
    <ul type="disc">
    <li>item</li>
    <li>item</li>
    <li>item</li>
    </ul>
    You can change disc with circle or square
    • Here is
    • how it is
    • with disc
    • Here is
    • how it is
    • with circle
    • Here is
    • how it is
    • with square
    Numbered list
    HTML
    <ol>
    <li>item</li>
    <li>item</li>
    <li>item</li>
    </ol>
    1. Here is
    2. how the numbered list
    3. is

    Text area
    HTML
    <textarea>text</textarea>

    Input
    HTML
    <input type="" value="text">

    CITAZIONE
    Typical values of the field type
    text          
    password
    checkbox
    radio 1 2


    Drop-down menu

    HTML
    <select>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    </select>


    Button 
    HTML
    <button>text</button>


    Superscript text
    HTML
    <sup>...</sup>


    Subscript text
    HTML
    <sub>...</sub>


    Iframe (including an external page on your own forum)
    HTML
    <iframe src="http://pageaddress" width="100" height="100"></iframe>