You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
534 B
28 lines
534 B
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta charset='utf-8' /> |
|
<title>Silly Say Demo</title> |
|
</head> |
|
<body> |
|
<p>Silly Say Demo</p> |
|
<p>By <a href="https://starbeamrainbowlabs.com/">Starbeamrainbowlabs</a></p> |
|
|
|
<!----------------> |
|
<script src="SillyBundle.js" charset="utf-8"></script> |
|
<script> |
|
window.addEventListener("load", function(event) { |
|
sillySay("This is a test"); |
|
}); |
|
</script> |
|
|
|
<style> |
|
html, body { font-size: 100%; } |
|
body |
|
{ |
|
font-family: sans-serif; |
|
} |
|
</style> |
|
</head> |
|
</html> |
|
|
|
|