erratic-gate/public/index.html

67 lines
1.8 KiB
HTML
Raw Permalink Normal View History

2023-10-29 04:54:24 +01:00
<!doctype html>
2023-10-29 03:14:12 +01:00
<html lang="en">
<head>
2023-10-29 04:54:24 +01:00
<title>Erratic gate</title>
2023-10-29 03:14:12 +01:00
<meta name="pinterest" content="nopin" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
2023-10-29 04:54:24 +01:00
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Righteous&display=swap"
/>
2023-10-29 03:14:12 +01:00
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
2023-10-29 04:54:24 +01:00
2023-10-29 03:14:12 +01:00
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>
2023-10-29 04:54:24 +01:00
<meta property="og:title" content="Erratic gate" />
<meta
property="og:description"
content="A logic gate simulator made for infoeducatie 2019"
/>
<meta
property="og:url"
content="https://mateiadrielrafael.github.io/erratic-gate/"
2023-10-29 03:14:12 +01:00
/>
<meta
name="Description"
content="A logic gate simulator made for infoeducatie 2019"
/>
<meta charset="UTF-8" />
</head>
<body
ondragstart="return false;"
ondrop="return false;"
oncontextmenu="return false"
>
<!--The react app is rendered here-->
<div id="app"></div>
<!--The splash screen structure-->
<div class="Splash">
<!--Loading animation-->
<div class="loading">
<div class="lds-ripple">
<div></div>
<div></div>
</div>
</div>
<!--In case someone tries to laod this with js disabled-->
<noscript> JavaScript must be enabled to run this app. </noscript>
</div>
</body>
</html>