For Kizzy

by MegaScience

HTML

<div class="center">
  <img onclick="ITSME();" src="http://www.fnaflore.com/wp-content/uploads/2016/01/FreddyMenubar.png" />
</div>

CSS

html,
body {
  background-color: black;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

#GFREDDY {
  display: none;
  color: white;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

JavaScript

var gfred = document.createElement('div');
gfred.setAttribute("id", "GFREDDY");
gfred.innerHTML = "Kizzy's face";
document.body.appendChild(gfred);

function ITSME() {
  /*setTimeout(function() {
    window.location.reload(true);
  }, 1000);*/
  //audio.play();
  document.getElementById("GFREDDY").style.display = "block";
}