28 lines
744 B
HTML
28 lines
744 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Demo</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap" rel="stylesheet">
|
|
<script type="module" src="./demo.js"></script>
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'Source Code Pro', monospace;
|
|
color: #cccccc;
|
|
background: #1d1d1d;
|
|
font-size: 16px;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<demo-app></demo-app>
|
|
</body>
|
|
</html>
|