19 lines
548 B
HTML
19 lines
548 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="./favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="./style.css">
|
|
<title>Keyboard Kingdom</title>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<div id="game-container"></div>
|
|
</div>
|
|
<!-- <script type="module" src="src/main.js"></script> -->
|
|
</body>
|
|
</html>
|