kalker/kalk_web/public/index.html

40 lines
755 B
HTML
Raw Normal View History

2021-01-02 01:02:46 +01:00
<!DOCTYPE html>
<html lang="en">
2021-01-02 23:45:54 +01:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
2021-01-02 01:02:46 +01:00
2021-01-02 23:45:54 +01:00
<title>Svelte app</title>
2021-01-02 01:02:46 +01:00
2021-01-02 23:45:54 +01:00
<link rel="icon" type="image/png" href="/favicon.png">
<script defer src="/build/bundle.js"></script>
<style>
#wrapper {
padding: 40px;
background-color: #212121;
}
.calculator {
width: 600px;
height: 200px;
font-family: "Hack", monospace, Consolas;
font-size: 14px;
padding: 5px 10px 0 10px;
background-color: #424242;
border-radius: 7px;
}
</style>
2021-01-02 23:45:54 +01:00
</head>
<body>
<noscript>Please enable JavaScript to view this application.</noscript>
<section id="wrapper">
<div class="calculator">
<kalk-calculator />
</div>
</section>
2021-01-02 23:45:54 +01:00
</body>
</html>