26 lines
		
	
	
		
			622 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			622 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <title>Gamma World Character Generator</title>
 | |
|     <script src="config.js"></script>
 | |
|     <script src="chargen.js" defer></script>
 | |
| </head>
 | |
| <body>
 | |
| 
 | |
| <h2> Generate A Character </h2>
 | |
| 
 | |
| <form id="characterForm">
 | |
|     <select id="charType">
 | |
|         <option value="human">Human</option>
 | |
|         <option value="humanoid">Humanoid</option>
 | |
|         <option value="mutant">Mutant</option>
 | |
|         <option value="cyborg">Cyborg</option>
 | |
|     </select>
 | |
|     <button type="submit">Generate character</button>
 | |
| </form>
 | |
| <hr/>
 | |
| <div id="resultSection"></div>
 | |
| 
 | |
| </body>
 | |
| </html> |