28 lines
609 B
HTML
Executable File
28 lines
609 B
HTML
Executable File
<html>
|
|
<head>
|
|
<style>
|
|
html {
|
|
background: url('http://wallpapercave.com/wp/7VNksl0.jpg') no-repeat center center fixed;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
|
|
#next-agent {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.my-clippy {
|
|
padding-top: 100px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script src="./demo.js" type="module"></script>
|
|
<button id="next-agent">Random agent</button>
|
|
<div class="my-clippy"></div>
|
|
</body>
|
|
</html>
|