erratic-gate/src/index.html

20 lines
418 B
HTML
Raw Normal View History

2019-03-06 09:25:58 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Logic gate simulator</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0"
/>
</head>
<body
ondragstart="return false;"
ondrop="return false;"
oncontextmenu="return false"
>
2019-07-15 13:45:52 +02:00
<div id="app"></div>
</body>
</html>