1
I am the master of a role-playing game and I made a riddle with a website. In this puzzle is to discover two numbers and then know if they are correct and after redirecting the players to another page. And I looked at everything that is corner how to do. Someone who knows more could help me? Here’s the source of the page, and just wanted to know how I can do it. Thanks for your help
(I know it only has html, but if you have a solution in javascript, jquery or css or you can, if you haven’t 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>