<!DOCTYPE html>
<html>

<head>
  <meta charset="utf-8">
  <title>

  </title>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="style.css">

</head>

<body>
<div class="workshoptext scroll" >
<div id="geneaology">
</div>
</div>

 <script>
function httpGet(theUrl) {
      var xmlHttp = new XMLHttpRequest();
      xmlHttp.open("GET", theUrl, false); // false for synchronous request
      xmlHttp.send(null);
      return xmlHttp.responseText;
    }

    var geneaology = httpGet('https://pad.vvvvvvaria.org/WordMord.references/export/html');
    document.getElementById("geneaology").innerHTML = geneaology;
</script>
</body>

</html>