Can someone show me this code working inside jsfiddle minus the javacript?

I tried:

CSS goes like this:

@import url('//fonts.googleapis.com/css?family=Monoton');

body {
  background-color: #111111;
}

.board {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 150px;
  width: 500px;
  margin: -75px 0 0 -250px;
  padding: 20px;
  font: 75px/75px Monoton, cursive;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 80px red, 0 0 30px FireBrick, 0 0 6px DarkRed;
  color: red;
}

#error {
  color: #fff;
  text-shadow: 0 0 80px #ffffff, 0 0 30px #008000, 0 0 6px #0000ff;
}

HTML goes like this:

<div class="board">
  <p id="error">
    error
  </p>
  <p id="code">
    404
  </p>
</div>
1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.