I am master of an RPG game and I made a puzzle with a website. In this puzzle is to discover two numbers and then find out if they are correct and after redirecting the players to another page. And I've tried everything that's singing how to do. Anyone who knows more could help me? Here is the page source, and I just wanted to know how I can do it. Thanks for the help
(I know it only has html, but if you have a solution in javascript, jquery or css or whatever it may be, if you have not made it clear.)
<!DOCTYPE html>
<html>
<head>
<title>clock</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="clock1">
<form>
<input type="text" id="num1" maxlength="2" style="width: 65px; height: 60px; font-size: 50px;"> :
<input type="text" id="num2" maxlength="2" style="width: 65px; height: 60px; font-size: 50px;"><br>
<div id="num3">
<button>Try it!</button>
</div>
</form>
</div>
</body>
</html>