diff --git a/img/elasticsearch.jpg b/img/elasticsearch.jpg new file mode 100644 index 0000000..719c029 Binary files /dev/null and b/img/elasticsearch.jpg differ diff --git a/scripts/myscript.js b/scripts/myscript.js index e69de29..0937624 100644 --- a/scripts/myscript.js +++ b/scripts/myscript.js @@ -0,0 +1,12 @@ +window.onload = function() { + var obox = document.createElement("div") + obox.innerHTML = ' < ' + + 'img src = "./elasticsearch.jpg" width = "250" height = "250" / >' + + ''; + obox.style.position = "fixed"; + obox.style.right = "20px"; + obox.style.bottom = "100px"; + + var sbox = document.getElementsByClassName(".page-inner")[0]; + sbox.appendChild(obox); +} \ No newline at end of file