-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrivial_info.html
114 lines (106 loc) · 5.7 KB
/
trivial_info.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Info</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<LINK REL=StyleSheet HREF="trivial.css" TYPE="text/css" MEDIA=screen>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha256-3dkvEK0WLHRJ7/Csr0BZjAWxERc5WH7bdeUya2aXxdU= sha512-+L4yy6FRcDGbXJ9mPG8MT/3UCDzwR9gPeyFNMCtInsol++5m3bk2bXWKdZjvybmohrAsn3Ua5x8gfLnbE1YkOg=="
crossorigin="anonymous">
</head>
<body>
<header class="ancho sticky-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark rounded">
<a class="navbar-brand">
<h1 class="textoGrande">Trivia</h1>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<div class="d-flex flex-row justify justify-content-end">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="trivial_main.html">
<h2 class="textoNormal">Home</h2>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="trivial_juego.html">
<h2 class="textoNormal">Play</h2>
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="trivial_info.html">
<h2 class="textoNormal">Info</h2>
<span class="sr-only">(current)</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="ancho fondoMain rounded border border-dark">
<h3 class="text-center textoInfo">
What is Trivia?
</h3>
<div class="row textoInfo">
<div class="col-6">
<p><strong>Trivial Pursuit</strong> is a board game from Canada in which winning is determined by a
player's ability to
answer general knowledge and popular culture <strong>questions</strong>. Players move their pieces
around a board,
the squares they land on determining the subject of a question they are asked from a card (from six
<strong>categories</strong> including "history" and "science and nature"). Each correct answer earns
a plastic wedge
which is slotted into the answerer's playing piece.</p>
<p>Since the game's first release in 1981, dozens of themed editions have been released. Some question
sets have been designed for younger players, and others for a specific time period or as promotional
tie-ins (such as Star Wars, Saturday Night Live, and The Lord of the Rings movies).</p>
<p>
Source: <a href="https://en.wikipedia.org/wiki/Trivial_Pursuit">Wikipedia</a>.
</p>
</div>
<div class="col-6">
<p>
In this site you will be able to test your <strong>knowledge</strong> by answering to some of the
questions that the
<strong>Trivia</strong> community has elaborate. Feel free to add yours at <a
href="https://opentdb.com/trivia_add_question.php">Trivia API</a> once you've registered.
</p>
<p>
To play the game just go to <a href="trivial_juego.html">Play</a> section and test your general
culture.
</p>
</div>
</div>
</main>
<footer class="ancho fondoMain rounded container fondoFooter">
<div class="d-flex flex-row justify-content-between align-items-center text-light">
<div class="d-flex flex-row justify-content-between align-items-start textoPequeno">
<i class="textoFooter"></i>
</div>
<div class="textoPequeno">
<a href="trivial_main.html" class="text-light textoFooter">Home</a>
<a href="trivial_juego.html" class="text-light textoFooter">Play</a>
<a href="trivial_info.html" class="text-light textoFooter">Info</a>
</div>
</div>
</footer>
<script src="trivial.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous">
</script>
</body>
</html>