nycki.net/static/mathdice/index.html
nycki dab1ed15c1
All checks were successful
/ build (push) Successful in 45s
mathdice
2025-10-16 11:00:28 -07:00

29 lines
695 B
HTML

<!doctype html>
<html>
<head>
<title>Mathdice Solver 1.0</title>
<!-- By Nick "Nupa" Lamicela, 2018 -->
<meta charset="utf-8"/>
<link rel="stylesheet" href="mathdice.css"/>
<script src="mathdice.js" defer></script>
</head>
<body>
<p>Your numbers are:</p>
<form>
<input type="text" name="die1" class="scoring dice" />
<input type="text" name="die2" class="scoring dice" />
<input type="text" name="die3" class="scoring dice" />
<input type="text" name="target" id="target" class="dice" />
</form>
<br/>
<button id="roll-button">Roll dice</button>
<button id="solve-button">Solve the puzzle</button>
<br/>
<br/>
<div id="solution"/>
</body>
</html>