28 lines
549 B
HTML
28 lines
549 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
||
|
<meta name="Description" content="Put your description here.">
|
||
|
<base href="/">
|
||
|
|
||
|
<style>
|
||
|
html,
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-family: sans-serif;
|
||
|
background-color: #ededed;
|
||
|
}
|
||
|
</style>
|
||
|
<title>vyber-client</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<vyber-client></vyber-client>
|
||
|
|
||
|
<script type="module" src="./src/vyber-client.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|