➽Kæwøø||тimelessяude

  1. I Più Comuni Codici HTML - base HTML

    Avatar
    Tags
    html
    By Kæwøø il 18 July 2014
      -    0 Comments   41 Views
    .

    Se ti è stato utile fai +1



    I PIU' COMUNI CODICI HTML



    A capo

    CODICE
    <br>



    Linea spaziatrice

    CODICE
    <hr>



    Inserire immagine

    CODICE
    <img src="http://indirizzo_immagine">


    Collegamento sito

    CODICE
    <a href="http://indirizzo_sito">testo</a>



    Testo con collegamento che si apre in una nuova finestra

    CODICE
    <a target="_blank" href="http://indirizzo_sito">testo</a>



    Immagine con collegamento



    CODICE
    <a href="http://indirizzo_sito"><img src="http://indirizzo_immagine"></a>



    Immagine con collegamento che si apre in una nuova finestra

    CODICE
    <a target="_blank" href="http://indirizzo_sito"><img src="http://...

    Read the whole post...

    Last Post by Kæwøø il 18 July 2014
    .
  2. Codice SCRIPT per inserire un messaggio di avviso in taboard

    Avatar
    Tags
    html
    script
    By Kæwøø il 18 July 2014
      -    0 Comments   29 Views
    .

    Se ti è stato utile fai +1



    Andate in: Amministrazione - codici Html - in cima al forum


    CODICE
    <script type="text/javascript">
    //By DarkStyle
    var message_tag="INSERISCI QUI IL TESTO DI AVVISO";
    var tag=document.tagboard.ffmsg;

    function modifyvalue() { if (tag.value=="") {
    tag.value=message_tag;
    tag.style.color="CODICE HTML COLORE DEL MESSAGGIO";
    tag.style.fontStyle="italic";
    } }

    function resetvalue() { if (tag.value==message_tag) {
    tag.value="";
    tag.style.color="CODICE HTML COLORE MESSAGGIODA EDITARE";
    tag.style.fontStyle="normal";
    } }

    document.onload=modifyvalue();
    document.tagboard.onsubmit=function() {if (tag.value==message_tag) return false};
    tag.onfocus=resetvalue;
    tag.onblur=modifyvalue;
    document.tagboard.I.onfocus=resetvalue;
    document.tagboard.B.onfocus=resetvalue;
    document.tagboard.U.onfocus=resetvalue;
    document.tagboard.fcolor.onfocus=resetvalue;
    </script>


    Se ti è stato utile fai +1



    Edited by Kæwøø - 3/9/2015, 20:16
    Last Post by Kæwøø il 18 July 2014
    .
  3. Codice Scrollbar html

    Avatar
    Tags
    html
    By Kæwøø il 15 Nov. 2013
      -    0 Comments   196 Views
    .

    Se ti è stato utile fai +1



    Codice scrollbar semplice
    qui scrivi
    qui se vuoi puoi scrivere
    dai scrivi
    forza
    ma nessuno ti mangia se ci scrivi,
    qui inserisci il tuo testo
    anche qui,
    anche qui,
    anche qui,
    anche qui,
    anche qui

    CODICE
    <div style="overflow-y: scroll; height: 70px">qui scrivi</div>
    height: 70px indica l'altezza della barra di scorrimento


    Codice scrollbar con regolazione sia in larghezza che altezza
    qui scrivi
    qui se vuoi puoi scrivere
    dai scrivi
    forza
    ma nessuno ti mangia se ci scrivi,
    qui inserisci il tuo testo
    anche qui,
    anche qui,
    anche qui,
    anche qui,
    anche qui

    CODICE
    <div style="OVERFLOW:auto; HEIGHT: 77px; WIDTH: 130px">qui scrivi</div>
    height: 77px indica l'altezza della barra di scorrimento
    WIDTH: 70px indica la largezza della barra di scorrimento

    Se ti è stato utile fai +1



    Edited by Kæwøø - 3/9/2015, 20:17
    Last Post by Smithb620 il 1 Mar. 2017
    .
  4. Codice html sfondo con bordi arrotondati

    Avatar
    Tags
    html
    By Kæwøø il 15 Nov. 2013
      -    0 Comments   36 Views
    .

    Se ti è stato utile fai +1




    CODICE
    <div style="color: #CODICE COLORE TESTO ;background-color: #CODICE COLORE SFONDO; font-size: GRANDEZZA TESTO IN PX O PT; font-family: georgia; text-align: center; width: 250px; border-radius: 10px; line-height: 8px;">CONTENUTO QUI<br/><br/></div>


    se si vuole aumentare la curvatura degli angoli vi basta modificare questa parte: border-radius: 10px


    ➽ KÆWØØ||ТIMELESSЯUDE sei sempre il benvenuto





    Se ti è stato utile fai +1



    Edited by Kæwøø - 3/9/2015, 20:18
    Last Post by Kæwøø il 15 Nov. 2013
    .
  5. Codice Scritte Sovrapposte

    Avatar
    Tags
    html
    By Kæwøø il 15 Nov. 2013
      -    0 Comments   267 Views
    .

    Se ti è stato utile fai +1



    CODICE
    Scritte
    Sovrapposte



    CODICE
    <span style="font-family: FONT; font-style: italic; font-size: 24px; letter-spacing: -5px; line-height: 12px;"><i>Scrivete qui quello che apparirà sopra
    Scrivete qui quello che apparirà sotto</i></span>


    font-size: grandezza in px del font
    letter-spacing: per regolare lo spazio tra ogni lettera. con il simbolo meno (-) davanti ai px otterrete un risultato più ravvicinato tra ogni lettera
    line-height: per regolare la distanza tra le righe

    Se volete aggiungere più di due righe basta andare accapo:

    Due
    Linee


    CODICE
    <span style="font-family: FONT; font-style: italic; font-size: 24px; letter-spacing: -2px; line-height: 12px;"><i>Due
    Linee</i></span>


    Tre
    Linee
    Sotto


    CODICE
    <span style="font-family: FONT; font-style: italic; font-size: 24px; letter-spacing: -2px; line-height: 12px;"><i>Tre
    Linee
    Sotto</i></span>


    E via dicendo

    Se ti è stato utile fai +1



    Edited by Kæwøø - 3/9/2015, 20:18
    Last Post by Kæwøø il 15 Nov. 2013
    .
  6. Codice sfondo con scroll

    Avatar
    Tags
    html
    By Kæwøø il 15 Nov. 2013
      -    0 Comments   23 Views
    .

    Se ti è stato utile fai +1



    Codice sfondo con scroll


    ➽ KÆWØØ||ТIMELESSЯUDE
    k0FHqKP


    CODICE
    <div style="BORDER: 3px double #CODICE COLORE CORNICE ; overflow: scroll; WIDTH: 100px; HEIGHT: 50px; background-color: #CODICE COLORE SFONDO; color: #CODICE COLORE TESTO">
    CONTENUTO
    </div>


    Si possono modificare le misure dell'area:
    HEIGHT=altezza
    WIDTH=larghezza
    inserite la misura in px


    Se ti è stato utile fai +1



    Edited by Kæwøø - 3/9/2015, 20:19
    Last Post by Kæwøø il 15 Nov. 2013
    .
  7. Codice HTML per affiancare un'immagine ad un testo

    Avatar
    Tags
    html
    By Kæwøø il 15 Nov. 2013
      -    0 Comments   571 Views
    .

    Se ti è stato utile fai +1



    Codice per affiancare un'immagine ad un testo



    CITAZIONE
    CODICE
    <div style="float: left; margin-right: 4px"><img src="LINK IMMAGINE"></div> TESTO

    fpz8UNA
    QUI SI SCRIVE QUELLO CHE SI VUOLE AFFIANCARE. SEMPLICE NO? Se volete un'immagine a destra e testo a sinistra dovrete solo cambiare questa parte : "float: left" al posto di left mettete "right" e l'immagine si troverà sulla destra.
    Potete sbizzarrirvi mettendo anche delle immagini





    Se ti è stato utile fai +1



    Edited by Kæwøø - 3/9/2015, 20:20
    Last Post by Kæwøø il 15 Nov. 2013
    .
  8. Come Inserire una canzone di sottofondo al tuo forum

    Avatar
    Tags
    html
    By Kæwøø il 30 Nov. 2011
      -    0 Comments   152 Views
    .

    Se ti è stato utile fai +1



    Per inserire una canzone di sottofondo nel tuo forum ti basta inserire questo codice in
    AMMINISTRAZIONE -> CODICI HTML-> IN CIMA AL FORUM

    CODICE
    <embed src="http://www.youtube.com/v/YOUTUBECODE&hl=it&fs=1&rel=0;hl=it&fs=1&autoplay=1&loop=1" type="application/x-shockwave-flash" allowfullscreen="true" width="1" height="1" style="visibility: hidden">


    Dunque... andate su Youtube e scegliete la canzone (io prenderò questa: www.youtube.com/watch?v=4sT54IEORII )

    Al posto di "YOUTUBECODE" inserite la parte dell'url colorata:
    www.youtube.com/watch?v= 4sT54IEORII


    avrete dunque questo codice:
    CODICE
    <embed src="http://www.youtube.com/v/4sT54IEORII&hl=it&fs=1&rel=0;hl=it&fs=1&autoplay=1&loop=1" type="application/x-shockwave-flash" allowfullscreen="true" width="1" height="1" style="visibility: hidden">


    Se ti è stato utile fai +1



    Edited by Kæwøø - 3/9/2015, 20:21
    Last Post by Kæwøø il 30 Nov. 2011
    .