Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="wordGuess"></div>
  <div id="guesses"></div>
  <div id="buttons"></div>
  
  <style>
    
    * {box-sizing: border-box;}
    html {
      font-family: monospace;
    }
    
    #wordGuess { 
      letter-spacing: 1em;
      font-size: 24px;
      margin-bottom: 10px;
      text-align: center;
    }
    
    #guesses {
      width: 100%;
      text-align: center;
      font-size: 16px;
      color: #c00;
      background: #eee;
      padding: 5px;
      margin: 10px 0;
    }
    
    #buttons {
      text-align: center;
      max-width: 550px;
      margin: 0 auto;
    }
    
    .button {
      appearance: none;
      -webkit-appearance: none;
      background: #eee;
      font-family: monospace;
      border: none;
      margin: 5px;
      padding: 10px;
      text-transform: uppercase;
      text-align: center;
      width: 50px;
      font-size: 18px;
    }
  </style>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers