kalker/kalk_web/public/index.html
2021-01-04 00:38:59 +01:00

30 lines
568 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Svelte app</title>
<link rel="icon" type="image/png" href="/favicon.png">
<script defer src="/build/bundle.js"></script>
<style>
.calculator {
width: 800px;
height: 350px;
font-family: "Hack", monospace, Consolas;
font-size: 14px;
}
</style>
</head>
<body>
<noscript>Please enable JavaScript to view this application.</noscript>
<div class="calculator">
<kalk-calculator />
</div>
</body>
</html>