-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (30 loc) · 1.36 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>No Lab Physics</title>
<link rel="stylesheet" href="./styles/global.css">
<link rel="stylesheet" href="./styles/index.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Notable&display=swap" rel="stylesheet">
<script type="module" src="./navbar.js"></script>
<script type="module" src="./index.js" async defer></script>
</head>
<body>
<physics-navbar></physics-navbar>
<main class="regular-page">
<div style="display: flex; align-items: center; justify-content: center; flex-direction: column;">
<h1>No Lab Physics</h1>
<a href="/experiment-create.html#WmrkdOqpEaWTFapNaxWD5">
<div id="put-canvas-here" style="--controlbar-width: 0vw; --canvas-max-height: 50vh; background-color: black;">
<canvas></canvas>
</div>
</a>
<button onclick="window.location.href = '/experiment-create.html'" id="experiment-button">Start Creating an Experiment from Scratch!</button>
</div>
</main>
</body>
</html>