-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.94 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
44
45
46
47
48
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="module" src="modules/main.mjs"></script>
</head>
<body>
<main>
<section class="node-area">
<div class="draggable node">
<h3>Console</h3>
<textarea class="console"></textarea>
</div>
<div class="draggable node" style="left: 200px;">
<p>For detailed instructions please consult <a href="summoning.txt" target="_blank">summoning.txt</a>.</p>
</div>
<!-- <div class="draggable node">
<h3>card title</h3>
<button onclick="console.log('wow')">test button</button>
<p>test paragraph, lot's of text. oh yeah.</p>
<span class="pin in"> </span> input 1
output 1 <span class="pin out"> </span>
<br>
<span class="pin in"> </span> input 2
output 2 <span class="pin out"> </span>
<br>
<span class="pin in"> </span> input 3
output 3 <span class="pin out"> </span>
<br>
</div>
<div class="draggable node">
<h3>card title</h3>
<button onclick="console.log('wow')">test button</button>
<p>I am a totally different card.</p>
<span class="pin in"> </span> input 1
output 1 <span class="pin out"> </span>
<br>
<span class="pin in"> </span> input 2
output 2 <span class="pin out"> </span>
<br>
<span class="pin in"> </span> input 3
output 3 <span class="pin out"> </span>
<br>
</div> -->
</section>
</main>
</body>