24 lines
		
	
	
		
			625 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			625 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								<!DOCTYPE html>
							 | 
						||
| 
								 | 
							
								<html lang="en">
							 | 
						||
| 
								 | 
							
								<head>
							 | 
						||
| 
								 | 
							
								    <meta charset="UTF-8">
							 | 
						||
| 
								 | 
							
								    <title>Gamma World Character Generator</title>
							 | 
						||
| 
								 | 
							
								    <script src="chargen.js" defer></script>
							 | 
						||
| 
								 | 
							
								</head>
							 | 
						||
| 
								 | 
							
								<body>
							 | 
						||
| 
								 | 
							
								<h1> Gamma World Character Generator </h1>
							 | 
						||
| 
								 | 
							
								<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>
							 |