-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 761 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="Stylesheet" href="style.css" type="text/css">
<title>Webassembly workspace</title>
</head>
<body>
<header><h1>WebAssembly + <s>Rust</s>C++ image processing</h1></header>
<button id="wasmButton">WebAssembly enable</button>
<div id='editor'>
<div id="middle-col">
<div id="controls">
<input type="file" id="input"/>
</div>
<canvas id="canvas" width="720" height="486"></canvas>
</div>
</div>
</body>
<script src="./main.js" type="text/javascript"></script>
<script src="./index.js" type="text/javascript"></script>
</html>