style/css


  <style>
    #playingArea{
      position: absolute;
      top: 100;
      left: 100;
      border: 1px solid black;
      width: 500;
      height: 500;
      background-color: rgb(192,192,192);
    }
    #paddle{
      position: absolute;
      top: 470;
      left: 228;
      width: 64;
      height: 16;
    }
    #ball{
      position: absolute;
      top: 4;
      left: 200;
      width: 16;
      height: 16;
    }
    #score{
      position: absolute;
      top: 486;
      left: 0;
      width: 500;
      height: 14;
      font-size: 10pt;
      color: white;
      background-color: rgb(32,128,64);
    }
  </style>