2024-06-25 14:03:13 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Gamma World Character Generator</title>
|
|
|
|
<script src="chargen.js" defer></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-06-28 22:26:42 +00:00
|
|
|
|
2024-06-25 14:03:13 +00:00
|
|
|
<h2> Generate A Character </h2>
|
2024-06-28 22:26:42 +00:00
|
|
|
|
2024-06-25 14:03:13 +00:00
|
|
|
<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>
|