Untitled
1 year ago in JavaScript
<script language="JavaScript">
<!--
var r_text = new Array ();
var fontsize = 200;
r_text[0] = "What matters is 'you' and not the state of you";
r_text[1] = "Body in abyss; heart in paradise";
r_text[2] = "But above all else, there was incurable love";
r_text[3] = "I pray to never rest in peace";
r_text[4] = "I am forever your most devoted believer";
r_text[5] = "They say that the best blaze burns brightest, when circumstances are at their worst";
r_text[6] = "There's no banquet in this world that doesn’t come to an end";
r_text[7] = "You've always been the strongest. But you don't need to be strong every waking moment of every day";
r_text[8] = "Only after having met you did I rediscover that it's such a simple thing to be happy";
r_text[9] = "If your dream is to save the common people, then my dream is only you";
r_text[10] = "I might not be able to decide whether the road is easy or not, but whether I walk it is entirely up to me";
r_text[11] = "Remember: when humans ascend, they are still human; when they fall, they are still human";
r_text[12] = "A heart's a heavy burden";
r_text[13] = "I feel like I'm always searching for someone, or something";
r_text[14] = "The world is merciless, and it is also very beautiful";
r_text[15] = "A person who cannot give up anything, can change nothing";
r_text[16] = "Live for your own sake";
r_text[17] = "No matter how we choose to live, we both die at the end";
r_text[18] = "entire lives aren't lessons, but there are lessons in life";
r_text[19] = "No one should feel bad for trying to be good";
r_text[20] = "Stories can make someone immortal as long as someone else is willing to listen";
r_text[21] = "Even if I searched the world over, no one could compare to you";
r_text[22] = "People, who can’t throw something important away, can never hope to change anything";
r_text[23] = "There’s a place you just can’t reach unless you have a dream too large to bear alone";
r_text[24] = "Now that I know what love is I am stronger for it";
r_text[25] = "Even if I’m not here, I’ll always be with you in spirit";
var i = Math.floor(26*Math.random())
var length = r_text[i].length;
if (length > 55)
{
fontsize = 170;
}
var length = r_text[i].length;
if (length < 30)
{
fontsize = 270;
}
document.write("<font color=\"ff938e\"> <span style='font-weight: normal; font-size: " + fontsize + "%; font-family: Garamond'>" + r_text[i] + '</span>');
//-->
</script>