31 lines
969 B
HTML
31 lines
969 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" type="text/css" href="../assets/css/styles.css">
|
|
<link rel="stylesheet" type="text/css" href="../assets/css/creatures.css">
|
|
|
|
<title>Gamma World Encounter Check</title>
|
|
<script src="../assets/js/config.js"></script>
|
|
<script type="module" src="../assets/js/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> |