DH-Roller/roll.html

28 lines
868 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Daggerheart Dice Roller</title>
<link rel="stylesheet" href="roll.css">
<script src="roll.js"></script>
</head>
<body>
<h1 style="margin-top: 0">Duality Dice Roll</h1>
<div class="content-row">
<label class="field-title" for="modifier">Modifier</label>
<input id="modifier" type="number" placeholder="0"></input>
</div>
<div class="content-row">
<label class="field-title" for="adv-disadv">Advantage/Disadvantage</label>
<select id="adv-disadv" size="1">
<option value="none">None</option>
<option value="advantage">Advantage</option>
<option value="disadvantage">Disadvantage</option>
</select>
</div>
<div class="content-row">
<span class="spacer"></span>
<button id="roll-duality" onclick="rollDualityDice()">Roll Duality Dice</button>
</div>
</body>
</html>