-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrivial_main.html
98 lines (92 loc) · 4.78 KB
/
trivial_main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</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 class="fondoTodo">
<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 active">
<a class="nav-link" href="trivial_main.html">
<h2 class="textoNormal">Home</h2>
<span class="sr-only">(current)</span>
</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">
<a class="nav-link" href="trivial_info.html">
<h2 class="textoNormal">Info</h2>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="ancho fondoMain rounded border border-dark">
<div class="row d-flex flex-row justify-content-between align-items-top">
<div id="divContenedorTarjeta" class="col-11 col-md-6 shadow p-3 rounded fondo border border-dark"
style="margin:auto">
</div>
<div id="divContenedorInformacion" class="col-11 col-md-5 p-3" style="margin-left:auto; margin-right: auto">
<p class="parrafo">
Here's an example of a <strong>card</strong> you'll see at <a href="trivial_juego.html">Play</a>
section.
Click on the answer to check if it's correct or not.
</p>
<p class="parrafo">
In the <strong>Play</strong> section, you will be able to select
the category you want to show questions about.
</p>
<p class="parrafo">
You will only be able to try once (obviously), so choose wisely!
</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>