Update index.html
Browse files- index.html +7 -0
index.html
CHANGED
@@ -12,6 +12,13 @@
|
|
12 |
<script>
|
13 |
const queryString = window.location.search;
|
14 |
const urlParams = new URLSearchParams(queryString);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
const links = urlParams.get("links");
|
16 |
var linkz= links.split(",");
|
17 |
let i = 0;
|
|
|
12 |
<script>
|
13 |
const queryString = window.location.search;
|
14 |
const urlParams = new URLSearchParams(queryString);
|
15 |
+
const sty = urlParams.get("style");
|
16 |
+
document.getElementById("in_html").style=sty;
|
17 |
+
|
18 |
+
const tit = urlParams.get("title");
|
19 |
+
var titl = "<center><b>"+tit+"</b></center>"
|
20 |
+
document.getElementById("in_html").innerHTML=titl;
|
21 |
+
|
22 |
const links = urlParams.get("links");
|
23 |
var linkz= links.split(",");
|
24 |
let i = 0;
|