mirror of
https://github.com/PaddiM8/kalker.git
synced 2024-12-13 10:00:51 +01:00
30 lines
568 B
HTML
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> |