Created
July 11, 2016 02:32
-
-
Save damiann/dac6857601f48de6c3e87c90f1d09c12 to your computer and use it in GitHub Desktop.
Random Generated Background
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
<p style="line-height: 18px; font-size: 18px; font-family: times;"> | |
<script> | |
for (var line=1; line<60; line++) { | |
for(var i=1;i<29;i++) { | |
var s = (Math.floor((Math.random()*2)%2)) ? "╱" : "╲"; | |
document.write(s); | |
} | |
document.writeln("<br>"); | |
} | |
</script> | |
</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment