2023-05-22 18:03:12 +00:00
|
|
|
<!Doctype HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script src="gender.min.js"> </script>
|
2023-05-22 18:33:14 +00:00
|
|
|
<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>
|
2023-05-22 18:03:12 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="elm-zone"></div>
|
|
|
|
<script>
|
|
|
|
Elm.Main.init({
|
|
|
|
node: document.getElementById('elm-zone')
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|