Spaces:
Running
Running
File size: 734 Bytes
4d2184b 1153769 4d2184b 13da775 287611d 13da775 b303c19 287611d 13da775 4d2184b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="card" id = "in_html" name="in_card">
</div>
<script>
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const main_url = "https://huggingface.co/datasets/Omnibus/game-data-1/resolve/main/images/"
const sty = urlParams.get("format")
const txt_s = urlParams.get("txt")
document.getElementById("in_html").innerHTML=txt_s
document.getElementById("in_html").style=sty
</script>
</body>
</html>
|