29 lines
		
	
	
		
			835 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			835 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <link rel="stylesheet" type="text/css" href="styles.css">
 | 
						|
    <title>Gamma World Encounter Check</title>
 | 
						|
    <script src="config.js"></script>
 | 
						|
    <script src="encounter.js" defer></script>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<h2>Check For An Encounter</h2>
 | 
						|
 | 
						|
<form id="terrainForm">
 | 
						|
    <select id="terrainType">
 | 
						|
        <option value="clear">Clear</option>
 | 
						|
        <option value="mountains">Mountainous</option>
 | 
						|
        <option value="forest">Forest</option>
 | 
						|
        <option value="desert">Desert</option>
 | 
						|
        <option value="watery">Watery</option>
 | 
						|
        <option value="ruins">Ruins</option>
 | 
						|
        <option value="deathlands">Death Lands</option>
 | 
						|
    </select>
 | 
						|
    <button type="submit">Check For Encounter</button>
 | 
						|
</form>
 | 
						|
<hr/>
 | 
						|
<div id="resultSection"></div>
 | 
						|
 | 
						|
</body>
 | 
						|
</html> |