28 lines
739 B
HTML
28 lines
739 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset='utf-8'>
|
||
|
<meta content="ie=edge" http-equiv="x-ua-compatible" />
|
||
|
<title>Fiddle</title>
|
||
|
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
||
|
|
||
|
<style>
|
||
|
@import url('https://rsms.me/inter/inter.css');
|
||
|
html { font-family: 'Inter', sans-serif; }
|
||
|
@supports (font-variation-settings: normal) {
|
||
|
html { font-family: 'Inter var', sans-serif; }
|
||
|
}
|
||
|
html, body {
|
||
|
height: 100%;
|
||
|
margin: 0;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app" class="app"></div>
|
||
|
<script src="js/main.js" type="text/javascript"></script>
|
||
|
<script type="text/javascript">
|
||
|
fiddle.core.init();
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|