-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmorse_A-K.htm
26 lines (19 loc) · 880 Bytes
/
morse_A-K.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
<html xml:lang="cs" xmlns="http://www.w3.org/1999/xhtml" lang="cs">
<head>
<title>Fort Mills Morse A-L</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/drawMorse.js"></script>
<script>
function drawIt() {
var canvas = document.getElementById("myCanvas")
drawPage("ABCDEFGH".split("").concat(["CH"].concat("IJK".split(""))), canvas)
}
</script>
</head>
<body style="position:absolute" onload="drawIt()">
<img id="img-background" src="morse-background.png" width="262px" height="494px">
<canvas id="myCanvas" width="1050" height="1485" style="position:absolute; left:0px; top:0px"></canvas>
</body>
</html>