Created
March 21, 2016 16:31
-
-
Save sgates/e87db57ae86c8d9154e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<style> | |
body{ | |
font-family: "Comic Sans MS"; | |
background: -moz-linear-gradient( top , | |
rgba(255, 0, 0, 1) 0%, | |
rgba(255, 255, 0, 1) 15%, | |
rgba(0, 255, 0, 1) 30%, | |
rgba(0, 255, 255, 1) 50%, | |
rgba(0, 0, 255, 1) 65%, | |
rgba(255, 0, 255, 1) 80%, | |
rgba(255, 0, 0, 1) 100%); | |
background: -webkit-gradient(linear, left top, left bottom, | |
color-stop(0%, rgba(255, 0, 0, 1)), | |
color-stop(15%, rgba(255, 255, 0, 1)), | |
color-stop(30%, rgba(0, 255, 0, 1)), | |
color-stop(50%, rgba(0, 255, 255, 1)), | |
color-stop(65%, rgba(0, 0, 255, 1)), | |
color-stop(80%, rgba(255, 0, 255, 1)), | |
color-stop(100%, rgba(255, 0, 0, 1))); | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Happy Times are here to stay</h1> | |
<p> | |
Wish on the moon<br/> | |
And look for the gold in a rainbow<br/> | |
And you'll find a happy time<br/><br/> | |
You'll hear a tune<br/> | |
That lives in the heart of a bluebird<br/> | |
And you'll find a happy time<br/><br/> | |
Though things may look very dark<br/> | |
Your dream is not in vein<br/> | |
For when do you find the rainbow?<br/> | |
Only after rain<br/><br/> | |
So wish on the moon<br/> | |
And someday it may be tomorrow<br/> | |
You will suddenly hear chimes<br/> | |
And you'll have your happy, happy time<br/><br/> | |
So wish on the moon<br/> | |
And someday it may be tomorrow<br/> | |
You will suddenly hear chimes<br/> | |
And you'll have your happy, happy time.<br/> | |
</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment