You are hereCompose tips
Compose tips
- Indirizzi web o e-mail vengono trasformati in link automaticamente
Elementi HTML permessi: <a> <p> <span> <div> <h1> <h2> <h3> <h4> <h5> <h6> <img> <map> <area> <hr> <br> <br /> <ul> <ol> <li> <dl> <dt> <dd> <table> <tr> <td> <em> <b> <u> <i> <strong> <font> <del> <ins> <sub> <sup> <quote> <blockquote> <pre> <address> <code> <cite> <embed> <object> <strike> <caption>
Questo sito consente l'uso di contenuto HTML. Se imparare tutto l'HTML può spaventare, imparare a usare un piccolo numero di elementi HTML di base è molto semplice. Questa tabella fornisce un esempio per ogni elemento attivo su questo sito.
Per maggiori informazioni, vedi le Specifiche HTML del W3C o utilizza il tuo motore di ricerca preferito per trovare un altro sito che spieghi l'HTML.
Descrizione elemento Cosa scrivi Cosa vedi Le ancore servono a creare collegamenti ad altre pagine. <a href="http://www.salvadorbahia.net">Salvador, Bahia, Brazil</a>Salvador, Bahia, Brazil Come impostazione predefinita, gli elementi che definiscono i paragrafi sono aggiunti automaticamente, quindi utilizza questo elemento per aggiungerne di ulteriori. <p>Paragrafo uno.</p> <p>Paragrafo due.</p>Paragrafo uno.
Paragrafo due.
Aiuto non disponibile per l'elemento span Aiuto non disponibile per l'elemento div Intestazione <h1>Titolo</h1>Titolo
Intestazione <h2>Sottotitolo</h2>Sottotitolo
Intestazione <h3>Sottotitolo tre</h3>Sottotitolo tre
Intestazione <h4>Sottotitolo quattro</h4>Sottotitolo quattro
Intestazione <h5>Sottotitolo cinque</h5>Sottotitolo cinque
Intestazione <h6>sottotitolo sei</h6>sottotitolo sei
Aiuto non disponibile per l'elemento img Aiuto non disponibile per l'elemento map Aiuto non disponibile per l'elemento area Aiuto non disponibile per l'elemento hr Come impostazione predefinita, gli elementi di interruzione linea sono inseriti automaticamente, quindi utilizza questo elemento per aggiungerne di ulteriori. L'uso di questo elemento è differente perché non prevede una coppia aperto/chiuso come tutti gli altri. Aggiungi un " /" extra all'interno dell'elemento per mantenere la compatibilità con XHTML 1.0 Testo con interruzione di linea <br />Testo con interruzione di linea Come impostazione predefinita, gli elementi di interruzione linea sono inseriti automaticamente, quindi utilizza questo elemento per aggiungerne di ulteriori. L'uso di questo elemento è differente perché non prevede una coppia aperto/chiuso come tutti gli altri. Aggiungi un " /" extra all'interno dell'elemento per mantenere la compatibilità con XHTML 1.0 Testo con interruzione di linea <br />Testo con interruzione di linea Elenco non ordinato - utilizza <li> all'inizio di ogni voce dell'elenco <ul> <li>Prima voce</li> <li>Seconda voce</li> </ul>- Prima voce
- Seconda voce
Elenco ordinato - utilizza <li> all'inizio di ogni voce dell'elenco <ol> <li>Prima voce</li> <li>Seconda voce</li> </ol>- Prima voce
- Seconda voce
Gli elenchi definizione sono simili agli altri elenchi HTML. <dl> inizia l'elenco definizione, <dt> inizia il termine da definire e <dd> inizia la descrizione della definizione. <dl> <dt>Primo termine</dt> <dd>Prima definizione</dd> <dt>Secondo termine</dt> <dd>Seconda definizione</dd> </dl>- Primo termine
- Prima definizione
- Secondo termine
- Seconda definizione
Tabella <table> <tr><th>Intestazione tabella</th></tr> <tr><td>Cella tabella</td></tr> </table>Intestazione tabella Cella tabella Enfatizzato <em>Enfatizzato</em>Enfatizzato Grassetto <b>Grassetto</b>Grassetto Sottolineato <u>Sottolineato</u>Sottolineato Corsivo <i>Corsivo</i>Corsivo Evidenziato <strong>Evidenziato</strong>Evidenziato Aiuto non disponibile per l'elemento font Eliminato <del>Eliminato</del>EliminatoInserito <ins>Inserito</ins>Inserito Scritto in basso Scritto <sub>sotto</sub>Scritto sotto Scritto in alto Scritto <sup>in alto</sup>Scritto in alto Aiuto non disponibile per l'elemento quote Blocco testo citato <blockquote>Blocco testo citato</blockquote>Blocco testo citato
Preformattato <pre>Preformattato</pre>Preformattato
Aiuto non disponibile per l'elemento address Testo codice utilizzato per mostrare il codice sorgente dei programmi <code>Codice</code>CodiceCitazione <cite>Citazione</cite>Citazione Aiuto non disponibile per l'elemento embed Aiuto non disponibile per l'elemento object Aiuto non disponibile per l'elemento strike Aiuto non disponibile per l'elemento caption La maggior parte dei caratteri inusuali può essere inserita direttamente senza problemi.
Se incontri problemi, prova a utilizzare le entità carattere HTML. Un esempio comune può essere & per il carattere e commerciale &. Per un elenco completo delle entità vedi la pagina entità dell'HTML. I caratteri disponibili includono:
Descrizione carattere Cosa scrivi Cosa vedi E commerciale && Maggiore di >> Minore di << Virgolette "" To add a lightbox to your images, add rel="lightbox" attribute to any link tag to activate the lightbox. For example:
<a href="image-1.jpg" rel="lightbox">image #1</a><a href="image-1.jpg" rel="lightbox[][my caption]">image #1</a>To show a caption either use the title attribute or put in the second set of square brackets of the rel attribute.
If you have a set of related images that you would like to group, then you will need to include a group name between square brackets in the rel attribute. For example:
<a href="image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
<a href="image-2.jpg" rel="lightbox[roadtrip][caption 2]">image #2</a>
<a href="image-3.jpg" rel="lightbox[roadtrip][caption 3]">image #3</a>
There are no limits to the number of image sets per page or how many images are allowed in each set.
If you wish to turn the caption into a link, format your caption in the following way:
<a href="image-1.jpg" rel='lightbox[][<a href="http://www.yourlink.com">View Image Details</a>]' >image #1</a>To add a lightbox slideshow to your images, add rel="lightshow[slideshowname][slide caption]" attribute to any link tag to activate the slideshow. For example:
<a href="image-1.jpg" rel="lightshow[show1]">image #1</a>
<a href="image-2.jpg" rel="lightshow[show1]">image #2</a>
<a href="image-3.jpg" rel="lightshow[show1]">image #3</a>
The title attribute in the link tag is optional. The addition of this attribute enables the display of a caption with the image displayed in the lightbox.
There are no limits to the number of slideshow image sets per page or how many images are allowed in each slideshow.
If you wish to turn the caption into a link, format your caption in the following way:
<a href="image-1.jpg" rel='lightshow[show1][<a href="http://www.yourlink.com">View Image Details</a>]'>image #1</a>It's possible to show video content in the lightbox. In this case the "rel" attribute should be set to
lightvideo. It's possible to group videos and to control the size of the lightbox by setting the "width" and "height" properties. The properties can be configured likelightvideo[group|width:300px; height: 200px;][caption]. The properties should all be of the format "property: value;" - note the closing semi-colon. If no properties are set, then the default width and height of 400px will be used. See below for more detailed examples.Basic example:
<a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo">Google video example - default size</a>Controlling lightbox size example:
<a href="http://video.google.com/videoplay?docid=1811233136844420765" rel="lightvideo[group|width:400px; height:300px;][caption]">Google video example - custom size</a>Supported video formats include asx, wmv, mov and swf. A number of online video providers are also supported, including YouTube and Google Video. For a full list of the current supported video providers please see the documentation on drupal.org.
It's possible to show HTML snippets in the lightbox, that is on the same domain. In this case the "rel" attribute should be set to "lightmodal". Again it's possible to group the content, (e.g.
lightmodal[group][caption]) but in addition to that, it's possible to control some of the modal properties. It's possible to set the "width", "height" and "scrolling" properties of the modal. The properties are separated from the group name by a|, for examplelightmodal[group|width:100px;][caption]. If no grouping is being used, then the|is still used and the format would belightmodal[|width:100px;]. The properties should all be of the format "property: value;" - note the closing semi-colon. If no modal properties are set, then the default width and height of 400px will be used. See below for more detailed examples.Basic example:
<a href="search.php" rel="lightmodal">Search</a>Grouped example:
<a href="search.php" rel="lightmodal[search][caption 1]">Search</a>
<a href="search.php?status=1" rel="lightmodal[search]">Search published</a>Controlling modal property example:
<a href="search.php" rel="lightmodal[|width:400px; height:300px; scrolling: auto;][caption]">Search</a>Controlling modal property when grouped example:
<a href="search.php" rel="lightmodal[search|width:400px; height:300px; scrolling: auto;]">Search</a>
<a href="search.php?status=1" rel="lightmodal[search|width:400px; height:300px;]">Search published</a>
