ouppy/static/index.html

31 lines
516 B
HTML

<!Doctype HTML>
<html>
<head>
<script src="gender.min.js"> </script>
<style>
body {
position: relative;
background-image: url("assets/heart-bg.gif");
display: grid;
justify-content: center;
align-items: center;
height: 100vh;
font-family: serif;
}
body > div {
background-color: white;
padding: 30px;
position: relative;
width: 500px;
}
</style>
</head>
<body>
<div id="elm-zone"></div>
<script>
Elm.Main.init({
node: document.getElementById('elm-zone')
});
</script>
</body>
</html>