html
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
<!DOCTYPE html>
<html>
<head>
<title>learning quiz</title>
</head>
<body>
</body>
</html>
<h1>when did the first iPhone come out?</h1>
<button onclick="alert ('that is the wrong answer')">2001</button></button>
<button onclick="alert ('correct!!')">2008</button></button>
<h1>if x is 1,000,345, then what is x plus 985,265?</h1>
<button onclick= "alert('correct!')">1,985,610</button></button>
<button onclick="alert('that is the wrong answer')">1,098,542</button></button>
<button onclick="alert ('do not worry. algebra is fairly easy once you learn it')">I am a kid and i dont know algebra</button></button>
<h1>how much is a gigabyte?</h1>
<button onclick= "alert('correct!')">a billion bytes</button></button>
css
css
1
2
3
body {
}
js
js
1
alert ('welcome to my quiz. try and answer the questions as good as you can')
BROWSER
Console
Run