29 lines
		
	
	
		
			898 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			898 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>Gamma World Game Play</title>
 | 
						|
    <script src="encounter.js" defer></script>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<h1> Gamma World Encounter Check</h1>
 | 
						|
<h2>Choose Terrain Being Traverse</h2>
 | 
						|
<!-- Valid values are: '
 | 
						|
                    '"clear", "mountains", "forest", "desert", "watery", "ruins", "deathlands"' -->
 | 
						|
<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> |