-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bridge Simulator</title>
<link rel="stylesheet" href="dist/style.css" />
</head>
<body>
<img src="/assets/bridge_bare.svg" style="border-radius: 50%" class="selectable" width="100" />
<h1>Welcome</h1>
<p>
You can test your Bridge projects here!<br />
Right click to start
</p>
<span id="nonchrome" class="selectable selectablechildren">
<h1>Warning</h1>
The rendered content may not look exactly the same in the Bridge Launcher,
or may not even work. Please use Google Chrome to get accurate results ^^
</span>
<h2>Prerequisites</h2>
<p>
<h3>Add this script</h3>
<pre id="importcode">
Loading...
</pre>
<h3>Get the Live Server from NPM:</h3><!--<br>-VSCode
<a href="https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer">Live Server</a>
<br>-JetBrains
<a href="https://plugins.jetbrains.com/plugin/7007-live-edit">Live Edit</a><br>-->-Node.js
<a href="https://www.npmjs.com/package/live-server">Live Server</a> (CLI)<br><br>Then specify the
localhost port that the plugin serves in the
settings.
</p>
<script src="context/context.js"></script>
<script src="dist/script.js"></script>
<img src="assets/loader.webp" id="loader" width="40" />
</body>
</html>