-
Notifications
You must be signed in to change notification settings - Fork 0
/
dzieisec.html
35 lines (30 loc) · 950 Bytes
/
dzieisec.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>Pytanie nr 10</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
</head>
<body>
<h1>Pytanie 10</h1><br /><br /><br /><br /><br /><br /><br /><br /><br />
<p>Zapisz liczbę <b>152</b> w postaci cyfr rzymskich</p><br /><br /><br /><br />
<div class="inputs">
Odpowiedź: <input type="text" name="tak" id="numb">
<button type="button" onclick="myFunction()">Dalej</button>
</div>
<script>
function myFunction() {
var x, text;
// Get the value of the input field with id="numb"
x = document.getElementById("numb").value;
// If x is Not a Number or less than one or greater than 10
if (x == "CLII") {
location.replace("jedenascie.html");
} else {
window.location.href = "zla.html"
}
document.getElementById("demo").innerHTML = text;
}
</script>
</body>
</html>