<html>
<head>
<script
src="https://www.mathcore.co.kr/api/libs/latest/helper.js"
defer
onload="onLoadHelper();"
></script>
<script>
async function onLoadHelper() {
await cemware.helper.load("math2d", {
key: "TESTKEY"
});
const math2d = new cemware.math2d.Math2D();
math2d.render("math2d");
}
</script>
</head>
<body>
<div id="math2d"></div>
<style>
html, body {
width: 100%;
height: 100%;
margin: 0;
display: flex;
overflow: hidden;
}
#math2d {
position: relative;
flex: 1;
height: 100%;
}
</style>
</body>
</html>