This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
forked from FodorKristof/tellerede
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz1.html
58 lines (52 loc) · 1.76 KB
/
quiz1.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="hu">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kvíz</title>
<link rel="stylesheet" href="styles.css">
<style>
#urlap {
width: 50%;
border-radius: 30px;
border: 2px solid black;
box-shadow: 5px 5px 5px white;
background-color: lightgray;
color: teal;
padding: 1%;
}
#ki {
font-weight: 900;
font-size: 1.2em;
}
</style>
<script>
function elso_kerdes() {
var x = document.querySelector("input[type=radio]:checked").value;
if (x == 2) {
document.getElementById("ki").style.color = "green";
document.getElementById("ki").innerHTML = "Jól tudtad!!";
}
else {
document.getElementById("ki").style.color = "red";
document.getElementById("ki").innerHTML = "Sajnos, rossz válasz!";
}
}
</script>
</head>
<body>
<form id="urlap">
<h4>Melyik tudományterületen volt Teller Ede leginkább ismert?</h4>
Kémia <input type="radio" value="1" name="elso"><br>
Fizika <input type="radio" value="2" name="elso"><br>
Biológia <input type="radio" value="3" name="elso"><br>
Matematika <input type="radio" value="4" name="elso"><br><br>
<input type="button" value="Ellenőrzés" onclick="elso_kerdes()">
<p id="ki"></p>
<p>
<a href="quiz2.html">Következő kérdés</a>
</p>
</form>
</body>
</html>