-
Notifications
You must be signed in to change notification settings - Fork 0
/
international1.html
85 lines (70 loc) · 2.88 KB
/
international1.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Trivia</title>
<link rel="icon" href="img/laboratoria.ico">
<link rel="stylesheet" href="main.css">
<script type="text/javascript" src="international.js"></script>
</head>
<body>
<div class="fondo">
<a href="#"><img src="img/fondo3.gif" alt="" width="1399"height="200"></a>
</div>
<table class="summary">
<form style="font:normal 16px sans-serif">
<thead>
<header>
<h2>Trivia</h2>
</header>
</thead>
<tbody class="summary-table">
<tr>
<th><p>¿Cómo se llama el nuevo presidente de los Estados Unidos?</p></th>
</tr>
<tr>
<td>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta1" id="p11"> Donald Trump</p>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta1" id="p12"> John F. Kennedy</p>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta1" id="p13"> George W. Bush</p>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta1" id="p14"> Barack Obama</p>
</td>
</tr>
<tr>
<th> <p>¿En qué continente está Ecuador?</p></th>
</tr>
<tr>
<td>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta2" id="p21"> Oceanía.</p>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta2" id="p22"> América</p>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta2" id="p23"> Europa.</p>
<p onclick="this.style.color='#00FF00"><input type="radio" name="pregunta2" id="p24"> América del norte.</p>
</td>
</tr>
<tr>
<th> <p>¿De qué colores es la bandera de México?</th>
</tr>
<tr>
<td>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta3" id="p31"> rojo yblanco</p>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta3" id="p32"> verde y amarillo</p>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta3" id="p33"> verde, blanco y rojo.</p>
<p onclick="this.style.color='#00FF00'"><input type="radio" name="pregunta3" id="p34"> celeste y blanco</p>
</td>
</tr>
</form>
<tr>
<div class="button">
<td><p><input type="button" value=" R E S U L T A D O " onclick="resultado()"/></p></td>
</div>
<tr>
<td>
<button onclick="location.href='option.html'"> Try Again</button>
<button onclick="location.href='index.html'">Go Out</button>
</td>
</tr>
</tbody>
<hr>
</table>
</body>
</html>