Collector/scene.html

23 lines
838 B
HTML
Raw Normal View History

2023-06-18 08:17:25 +00:00
<!DOCTYPE html>
<!-- Webpage that uses Bootstrap to fill the background with an image from JS -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bootstrap Background</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="scripts/scene.js"></script>
<!-- LiveJS is not supported when run with the file:// protocol -->
<!-- <script src="https://livejs.com/live.js"></script> -->
<style>
body {
/* background-image: url('https://picsum.photos/3840/2160'); */
background-size: cover;
}
</style>
</head>
<body id="wallpaper">
</body>
</html>