-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.65 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
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<input id="myCSV" type = "file" accept="Data.csv"/>
<link href = "styles.css" rel = "stylesheet">
<script src = "script.js" defer></script>
<title>Bruh 2.0</title>
</head>
<body>
<div id = "main" class = "show">
<table id = "mainTable" class = "mainTableClass">
<div>
<thead>
<tr>
<!--this is the table arrangement to allow for a veiw port, canvace, a degugging section with data like position and time ect.
and a controls and info section for user instructions-->
<th>Canvas area</th>
<th>Data</th>
<th>Controls</th>
</tr>
</thead>
</div>
<div>
<tbody>
<tr>
<th><canvas id="canvas" width="1000" height="500" style="border:1px solid #f3f1f1;"></canvas></th>
<th id = "pos"><output id="out">file contents will appear here</output></th>
<th>the controls are simple <br> w a s d for movment and it is basic physics.<br><p>Select local CSV File:</p><br><input id="csv" type="file"></th>
</tr>
</tbody>
</div>
</table>
</div>
</body>
</html>