23 lines
512 B
HTML
23 lines
512 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
table {
|
|
width: 100%;
|
|
table-layout: fixed;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Is it working?</h1>
|
|
<button id="perm">click me for permissions</button>
|
|
<canvas width="200" height="200" id="canvas"></canvas>
|
|
<script src="m3.js"></script>
|
|
<script src="util.js"></script>
|
|
<script src="v3.js"></script>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|