slint/examples/todo/wasm/static/index.html
2020-10-09 13:49:39 +02:00

27 lines
718 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SixtyFPS Todo Demo (Web Assembly version)</title>
<style>
canvas {
border: solid;
}
</style>
</head>
<body>
<p>This is the SixtyFPS Todo Demo compiled to WebAssembly.</p>
<canvas id="canvas" width="640" height="480" unselectable="on"></canvas>
<p>
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/todo/ui/todo.60">
View Source Code on GitHub</a> -
<a href="https://www.sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/todo/ui/todo.60">
Edit in the online code editor
</a>
</p>
<script src="index.js"></script>
</body>
</html>