Compose tips

  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>

    Deze website staat het gebruik van HTML toe. Hoewel het leren van HTML een zware opgave lijkt komt het vaak goed van pas een aantal "tags" te kennen. De onderstaande tabel geeft voorbeelden voor elke tag die wordt gebruikt op deze site.

    Voor meer informatie kijk op W3C's HTML Specificaties of gebruik uw favoriete zoekmachine om andere sites te vinden die HTML verklaren.

    Tag DescriptionYou TypeYou Get
    Anchors are used to make links to other pages.<a href="http://leegstandzonderzorgen.nl/web">leegstandzonderzorgen.nl</a>leegstandzonderzorgen.nl
    Emphasized<em>Emphasized</em>Emphasized
    Strong<strong>Strong</strong>Strong
    Cited<cite>Cited</cite>Cited
    Coded text used to show programming source code<code>Coded</code>Coded
    Unordered list - use the <li> to begin each list item<ul> <li>First item</li> <li>Second item</li> </ul>
    • First item
    • Second item
    Ordered list - use the <li> to begin each list item<ol> <li>First item</li> <li>Second item</li> </ol>
    1. First item
    2. Second item
    Definition lists are similar to other HTML lists. <dl> begins the definition list, <dt> begins the definition term and <dd> begins the definition description.<dl> <dt>First term</dt> <dd>First definition</dd> <dt>Second term</dt> <dd>Second definition</dd> </dl>
    First term
    First definition
    Second term
    Second definition

    De meeste ongebruikelijke tekens kunnen direct ingevoerd worden zonder problemen.

    Wanneer u toch problemen ervaart, probeer dan de HTML-code voor dat teken. Voorbeeld: &amp; voor een en-teken ( & ). Voor een complete lijst van tekens zie de HTML-tekens pagina. Sommige van de beschikbare tekens bevatten:

    Character DescriptionYou TypeYou Get
    Ampersand&amp;&
    Greater than&gt;>
    Less than&lt;<
    Quotation mark&quot;"
  • Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.