-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (25 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Braille paint!</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.dom.min.js"></script>
<script src="gridcanvas.js"></script>
<script src="braillepaint.js"></script>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/iosevka.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/solid.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/fontawesome.css" crossorigin="anonymous">
</head>
<body>
<div id="top-menu"></div>
<div id="tools"></div>
<div id="braille-canvas"></div>
<div id="msgbox-overlay" class="dark-overlay">
<div id="braille-msgbox" class="msgbox">
</div>
</div>
</body>
</html>