docs/index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>H3</title>
<meta name="description" content="A bare-bones client-side web microframework" />
<meta name="author" content="Fabio Cevasco" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="/favicon.png" type="image/png">
<link rel="stylesheet" href="css/mini-default.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div id="app"></div>
<script type="module" src="js/app.js"></script>
</body>
</html>
|