gammatools/web/chargen.html

24 lines
625 B
HTML
Raw Normal View History

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>
<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>