28 lines
534 B
HTML
28 lines
534 B
HTML
<!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>
|
|
|