Last active
          December 26, 2019 22:22 
        
      - 
      
- 
        Save kahilkubilay/4d4762252b32accddc13005c68defdfc to your computer and use it in GitHub Desktop. 
    Javascript ile Oyun Yapımı: Oyun Alanı
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Ping Pong With Javascript</title> | |
| <style type="text/css"> | |
| @import'main.css'; | |
| @import'reset.css'; | |
| </style> | |
| </head> | |
| <body> | |
| <div id="gameArea"> | |
| <div id="stickLeft" class="stick"></div> | |
| <div id="stickRight" class="stick"></div> | |
| <div id="line"></div> <div id="ball" class="ball"></div> <div id="scoreboard"> | |
| <div id="scoreLeft">0</div> | |
| <div id="scoreRight">0</div> | |
| </div> | |
| </div> | |
| <script src="main.js" type="text/javascript"></script> | |
| </body> | |
| </html> | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment