This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-20 20:57:24 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Kanji Recognition</title>
|
|
|
|
<link rel="stylesheet" href="./style.css">
|
|
|
|
<script src="./script.js" defer></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<canvas id='canvas'></canvas>
|
2020-11-21 04:12:00 +01:00
|
|
|
<div id="toggleButtons">
|
|
|
|
<button id="toggleKanji">Kanji</button>
|
|
|
|
<button id="toggleHiragana">Hiragana</button>
|
|
|
|
<button id="toggleKatakana">Katakana</button>
|
|
|
|
<button id="toggleAll">All</button>
|
|
|
|
</div>
|
2020-11-20 20:57:24 +01:00
|
|
|
<div id='response'>None</div>
|
|
|
|
<button id="clear">Clear</button>
|
|
|
|
</body>
|
|
|
|
</html>
|