erratic-gate/src/index.html

33 lines
832 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>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>
2019-07-22 10:59:10 +02:00
<link
href="https://fonts.googleapis.com/css?family=Righteous&display=swap"
rel="stylesheet"
/>
</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>