Files
nebula.js/examples/mashup/index.html
2025-01-30 13:59:23 +01:00

43 lines
824 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Nebula mashup</title>
<script src="https://unpkg.com/enigma.js"></script>
<script src="https://unpkg.com/@nebula.js/stardust"></script>
<style>
body {
background: #eee;
}
.content {
margin: 0 auto;
width: 80%;
max-width: 800px;
}
.object {
position: relative;
height: 400px;
background-color: white;
}
.toolbar {
background-color: white;
margin: 12px 0px;
}
</style>
</head>
<body>
<div class="content">
<div class="toolbar"></div>
<div class="object" data-type="foo"></div>
</div>
<script src="connect.js"></script>
<script src="index.js"></script>
</body>
</html>