lunedì 10 novembre 2014

Testo arcobaleno (Rainbow text)

Rainbow Text Maker (HTML Generator)  online
 Link


TESTO ARCOBALENO - RAINBOW

<font face="Palatino Lynotape" size="5">
<b><font color="Green">S</font>
<font color="Red">U</font><font color="lime">Z</font>
<font color="blue">A</font><font color="Fuchsia">N</font>
<font color="Sienna">A</font>
</b></font>


S U Z A N A
****
Colori in inglese - una tabella completa
con il nome del colore
troverete QUI
colori

domenica 9 novembre 2014

e-book scaricabili gratuitamente


   lista e-book         Lista e-book Pack  (scaricabili)  da QUI




e-book gratuiti

                                   e-book scaricabili gratuitamente da QUI
                                                   
                                                                   *****

                                  CALIBRE  è un libero, open source software di e-book
                                                        scaricabile da QUI


venerdì 7 novembre 2014

Mentalmente



Prima ancora di appoggiare
 il pennello sulla tela,
 il pittore immagina
 mentalmente il suo quadro..
 Se pensate a voi stessi
 come a un quadro,
 che cosa vedete?...
 Il disegno a cui pensate
 merita di essere dipinto?
   -Thomas Dreier-

Post-it Note Generator on-line

È possibile creare post-it in stile note
Genera online la tua nota personalizzatta :

post-it
Post It Note Generator

Ransom note
Ransom  Note Generator

Sticky Note Generator

martedì 4 novembre 2014

Script Ultima visita /scadenza 2 anni/


Questo script registra la data + ora dell'ultima visita
 del visitatore e lo visualizza al loro ritorno.
È possibile personalizzare i messaggi da visualizzare


<script type = "text/javascript">

/***********************************************
* Display time of last visit script- by JavaScriptKit.com
* This notice MUST stay intact for use
* Visit JavaScript Kit at http://www.javascriptkit.com/ for this script and more
***********************************************/

var days = 730; // days until cookie expires = 2 years.
var lastvisit=new Object();
var firstvisitmsg="Questa è la tua prima visita a questa pagina. Benvenuto!";
lastvisit.subsequentvisitmsg="Bentornato visitatore! La tua ultima visita è stata  <b>[displaydate]</b>";

lastvisit.getCookie=function(Name){
var re=new RegExp(Name+"=[^;]+", "i");
if (document.cookie.match(re))
return document.cookie.match(re)[0].split("=")[1];
return'';
}

lastvisit.setCookie=function(name, value, days){
var expireDate = new Date();

var expstring=expireDate.setDate(expireDate.getDate()+parseInt(days));
document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; path=/";
}

lastvisit.showmessage = function() {
var wh = new Date();
if (lastvisit.getCookie("visitc") == "") {
lastvisit.setCookie("visitc", wh, days);
document.write(firstvisitmsg);
}

else {
var lv = lastvisit.getCookie("visitc");
var lvp = Date.parse(lv);
var now = new Date();
now.setTime(lvp);
var day = new Array("Dom", "Lun", "Mart", "Mer", "Giov", "Ven", "Sab");
var month = new Array ("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
var dd = now.getDate();
var dy = now.getDay();
dy = day[dy];
var mn = now.getMonth();
mn = month[mn];
yy = now.getFullYear();
var hh = now.getHours();
var ampm = "AM";
if (hh >= 12) {ampm = "PM"}
if (hh >12){hh = hh - 12};
if (hh == 0) {hh = 12}
if (hh < 10) {hh = "0" + hh};
var mins = now.getMinutes();
if (mins < 10) {mins = "0"+ mins}
var secs = now.getSeconds();
if (secs < 10) {secs = "0" + secs}
var dispDate = dy + ", " + mn + " " + dd + ", " + yy + " " + hh + ":" + mins + ":" + secs + " " + ampm
document.write(lastvisit.subsequentvisitmsg.replace("\[displaydate\]", dispDate))
}

lastvisit.setCookie("visitc", wh, days);

}

lastvisit.showmessage();

</script>

lunedì 27 ottobre 2014

La ragazza del dipinto_italian



   BELLE  Titolo originale - Belle

Condividi torrent:



Sparkler mouse Trail Javascript da Mike McGrath

*
*
*
*

 

STEP 1

Copia il codice qui sotto e incolla questo tra i tag
<head> e </ head> del documento HTML:

 

<STYLE TYPE="text/css">
<!-- BODY{ overflow:scroll; overflow-x:hidden; } .s1 { position : absolute;
font-size : 10pt; color : blue; visibility: hidden; } .s2 { position : absolute;
font-size : 18pt; color : red; visibility : hidden; } .s3 { position : absolute;
font-size : 14pt; color : gold; visibility : hidden; } .s4 { position : absolute;
font-size : 12pt; color : lime; visibility : hidden; } //--> </STYLE>
STEP 2

Copia il codice qui sotto e incolla sotto il tag <body> del documento HTML:
 

<DIV ID="div1" CLASS="s1">*</DIV>
<DIV ID="div2" CLASS="s2">*</DIV> <DIV ID="div3"
CLASS="s3">*</DIV> <DIV ID="div4" CLASS="s4">*</DIV>
<SCRIPT LANGUAGE="javascript" TYPE="text/javascript">
/* Original by Mike McGrath http://website.lineone.net/~mike_mcgrath Distributed by Hypergurl */ var nav = (document.layers); var tmr = null; var
spd = 50; var x = 0; var x_offset = 5; var y = 0; var y_offset = 15; if(nav) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = get_mouse; function get_mouse(e) { x = (nav) ? e.pageX
: event.clientX+document.body.scrollLeft; y = (nav) ? e.pageY : event.clientY+document.body.scrollTop;
x += x_offset; y += y_offset; beam(1); } function beam(n) { if(n<5) { if(nav)
{ eval("document.div"+n+".top="+y); eval("document.div"+n+".left="+x);
eval("document.div"+n+".visibility='visible'"); } else { eval("div"+n+".style.top="+y);
eval("div"+n+".style.left="+x); eval("div"+n+".style.visibility='visible'");
} n++; tmr=setTimeout("beam("+n+")",spd); } else { clearTimeout(tmr);
fade(4); } } function fade(n) { if(n>0) { if(nav)eval("document.div"+n+".visibility='hidden'");
else eval("div"+n+".style.visibility='hidden'"); n--; tmr=setTimeout("fade("+n+")",spd);
} else clearTimeout(tmr); } // --> </SCRIPT>

sabato 25 ottobre 2014

Aforisma di Bob Marley


suzana Io non cancello nulla
 in questa mia vita.

Ogni cosa, ogni minima cosa,
mi ha reso quel che sono adesso.
Le cose belle mi hanno insegnato ad amare la vita.
Le cose brutte, a saperla vivere.
   
    -Bob Marley
-

PhotoFiltre

 
PhotoFiltre Studio è un programma completo di fotoritocco.
Sito Ufficiale:
http://www.photofiltre-studio.com/

1. PhotoFiltre Studio X 10.8.1+Key-CORE torrent
2. Download QUI
password =  ikunitswl
3. PhotoFiltre Studio X 10.8.1 Final + Key {AmanPC} torrent