html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<h1><center>Quotes</center></h1>
<a href="#Home">Home</a>
<a href="#Day">Quote of the day</a>
<a href="#copy" >Credits</a>
<hr>
<h3>New</h3>
<hr>
<pre>First Deserve,then desire</pre><br />
<pre>Hurry up,you are dying</pre><br/>
<h3>Most liked</h3>
<hr>
<pre>Failure is the condiment that gives success its flavor. </pre><br />
<pre>Vision without action is daydream. Action without vision is nightmare. </pre>
<h3 id="Day"><center> Quote of the day </center></h3>
<hr>
<pre>Storms donot last forever.</pre>
<br/>
<h3>Random quotes</h3>
<hr>
<script>
showRandomQuote = function () {
var quotes = new Array();
quotes[0] = " Always forgive your enemies; nothing annoys them so much. ";
quotes[1] = " We are what we repeatedly do; excellence, then, is not an act but a habit.";
quotes[2] = " You can do anything, but not everything. ";
quotes[3] = " The richest man is not he who has the most, but he who needs the least. ";
quotes[4] = " You must be the change you wish to see in the world ";
quotes[5] = "To the man who only has a hammer, everything he encounters begins to look like a nail.";
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
a{
color:red;
}
h3{
color:red;
}
marquee{
color:red;
}
.box{
color:red;
}
h1{
color:red;
}
.copy{
color:red;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
alert ("Donot copy it")
alert ("Update:\nQuotes gone social\n(Facebook Instagram)")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run