33 lines
832 B
HTML
33 lines
832 B
HTML
<!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"
|
|
/>
|
|
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Righteous&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
|
|
<body
|
|
ondragstart="return false;"
|
|
ondrop="return false;"
|
|
oncontextmenu="return false"
|
|
>
|
|
<div id="app"></div>
|
|
</body>
|
|
</html>
|