main
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <title>Braille Dot Generator</title>
6 <link href="style.css" rel="stylesheet">
7</head>
8<body>
9 <div id="brailleGrid" class="grid">
10 <input type="checkbox" class="dot">
11 <input type="checkbox" class="dot">
12 <input type="checkbox" class="dot">
13 <input type="checkbox" class="dot">
14 <input type="checkbox" class="dot">
15 <input type="checkbox" class="dot">
16 <input type="checkbox" class="dot">
17 <input type="checkbox" class="dot">
18 </div>
19 <div class="result">
20 <div>Copy: <button id="charBtn" class="btnText" >⠿</button></div>
21 <div>Code Point: <span id="codePoint">U+28FF</span></div>
22 </div>
23 <script src="braille.js"></script>
24</body>
25</html>
26