<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Cells</title>
<script src="https://code.jquery.com/jquery-3.4.1.min.js">
<script>
$(document).ready(function () {
function reorient(e) {
var portrait = (window.orientation % 180 == 0);
$("body > div").css("-webkit-transform", !portrait ? "rotate(-90deg)" : "");
}
window.onorientationchange = reorient;
window.setTimeout(reorient, 0);
});
</script>
<script src="Build/UnityLoader.js"></script>
<script>
UnityLoader.instantiate("unityContainer", "Build/Build.json");
</script>
</head>
<body style="margin: 0px; border: 0px; padding: 0px">
<div id="unityContainer" style="width: 100%; height: 100%; margin: 0px; border: 0px; padding: 0px"></div>
</body>
</html>