-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbraille_M-Z.htm
31 lines (23 loc) · 962 Bytes
/
braille_M-Z.htm
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
<html xml:lang="cs" xmlns="http://www.w3.org/1999/xhtml" lang="cs">
<head>
<title>Fort Mills Braille M-Z</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style/layout.css"/>
<link rel="stylesheet" type="text/css" media="print" href="style/layout.css"/>
<script type="text/javascript" src="js/drawBraille.js"></script>
<script>
function drawIt() {
var canvas = document.getElementById("myCanvas")
drawPage("ABCDEFGHIJKL".split(""), canvas)
}
</script>
</head>
<body style="position:absolute" onload="drawIt()">
<img id="img-background" src="background.png" width="262px" height="494px">
<canvas id="myCanvas" width="1050" height="1485" style="position:absolute; left:0px; top:0px"></canvas>
<script>
var canvas = document.getElementById("myCanvas")
drawPage("MNOPRSTUVXYZ".split(""), canvas)
</script>
</body>
</html>