42 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			682 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<html>
 | 
						|
 | 
						|
<head>
 | 
						|
  <script type="text/javascript" src="herzle.js"></script>
 | 
						|
 | 
						|
  <style type="text/css">
 | 
						|
    * {
 | 
						|
      font-size: 50px; 
 | 
						|
      color: #ff00ff; 
 | 
						|
      font-family: helvetica, arial;
 | 
						|
    }
 | 
						|
    #player {
 | 
						|
      position: absolute;
 | 
						|
    }
 | 
						|
    #enemy {
 | 
						|
      position: absolute;
 | 
						|
      top: 10%;
 | 
						|
    }
 | 
						|
    #herzles {
 | 
						|
      position:absolute;
 | 
						|
      top: 10%;
 | 
						|
      left: 10%;
 | 
						|
    }
 | 
						|
    #pewpew {
 | 
						|
      position:absolute;
 | 
						|
      top: 10%;
 | 
						|
      right: 10%;
 | 
						|
    }
 | 
						|
    div.shoot {
 | 
						|
      position:absolute;
 | 
						|
    }
 | 
						|
  </style>
 | 
						|
</head>
 | 
						|
 | 
						|
<body onload="init();">
 | 
						|
  <div id="enemy">30</div>
 | 
						|
  <div id="player"><</div>
 | 
						|
  <div id="pewpew"></div>
 | 
						|
  <div id="herzles"></div>
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |