mirror of
https://github.com/gramps-project/gramps-web.git
synced 2026-05-01 19:45:09 -04:00
30 lines
822 B
HTML
30 lines
822 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="/">
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet">
|
|
<style>
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<title>gramps-js</title>
|
|
</head>
|
|
|
|
<body>
|
|
<gramps-js></gramps-js>
|
|
|
|
<script type="module" src="./src/gramps-js.js"></script>
|
|
</body>
|
|
|
|
</html>
|