-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (35 loc) · 818 Bytes
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
canvas {
border: 2px solid black;
}
</style>
</head>
<body>
<header>
<nav class="menu">
<h1>Choose project</h1>
<ul class='nav'>
</ul>
</nav>
</header>
<main>
<h1>Name of the project</h1>
<h2 id='project-name'></h2>
<div id="project-data">
</div>
</main>
<!-- <canvas id="canvas1"></canvas>
<button id='start1'>Start</button>
<h2>Pi: <span id="pi1"></span></h2> -->
<script src="./js/canvasMyDefaultFunctions.js"></script>
<script src='./js/PI1.js'></script>
<script src='./js/PI2.js'></script>
<script src="./js/main.js"></script>
</body>
</html>