29 lines
		
	
	
	
		
			695 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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>
 |