-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (28 loc) · 1.28 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 lang="en" dir="ltr">
<head>
<!--Bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>SET Conference 2021 Circuit Assembler</title>
<style>
canvas {
border: 1px solid #d3d3d3;
background-color: #f1f1f1;
}
</style>
</head>
<body onload="initialize()">
<div class="container pt-3 bg-light text-dark">
<h1>Circuit Model</h1>
<p>Construct your circuit here!<br>
Each building can only have one building connecting to it, and one building that it connected to (i.e. one input, one output)<br>
Attempting to cram more than one input onto a building will break connections with other buildings.</p>
</div>
<div class="container pt-3 bg-light text-dark" id="circuit">
<script src="interface.js"></script>
</div>
<div class="container pt-3 bg-light text-dark" id="print">
</div>
</body>
</html>