You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
706 B
33 lines
706 B
<!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>
|
|
|