24 lines
469 B
HTML
24 lines
469 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Bill Cipher</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Bill Cipher</h1>
|
|
|
|
<!-- Keyboard keys will be dynamically generated here -->
|
|
|
|
<div id="font-name-tabs">
|
|
<!-- Font name tabs -->
|
|
</div>
|
|
<div id="keyboard">
|
|
<!-- Keyboard keys -->
|
|
</div>
|
|
|
|
<div id="output"></div>
|
|
<button id="clear-output">Clear Output</button>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|