-
Notifications
You must be signed in to change notification settings - Fork 0
/
FAQ.html
153 lines (134 loc) · 5.29 KB
/
FAQ.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-sompatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ</title>
<link rel="icon" id="dynamic-favicon" type="image/png" href="img/neoris-logos/Icon_light.png">
<!-- ======= ICONS ====== -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" />
<!-- ======= Styles ====== -->
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/styleFAQ.css">
</head>
<body>
<!-- =============== Navigation ================ -->
<div class="container">
<div class="navigation">
<ul>
<li>
<a href="#">
<span class="icon">
<img src="img/neoris-logos/Icon_light.png" alt="" class="logo">
</span>
<img src="img/neoris-logos/logo-light.png" alt="" class="logo_secondary">
</a>
</li>
<li>
<a href="index.html">
<span class="icon">
<ion-icon name="home-outline"></ion-icon>
</span>
<span class="title">Inicio</span>
</a>
</li>
<li>
<a href="cursos.html">
<span class="icon">
<ion-icon name="flash"></ion-icon>
</span>
<span class="title">Cursos</span>
</a>
</li>
<li>
<a href="juego.html">
<span class="icon">
<ion-icon name="happy"></ion-icon>
</span>
<span class="title">Juego</span>
</a>
</li>
<li>
<a href="admin.html">
<span class="icon">
<ion-icon name="person"></ion-icon>
</span>
<span class="title">Admin</span>
</a>
</li>
<li>
<a href="FAQ.html">
<span class="icon">
<ion-icon name="help"></ion-icon>
</span>
<span class="title">FAQ</span>
</a>
</li>
<li>
<a href="login.html">
<span class="icon">
<ion-icon name="log-out-outline"></ion-icon>
</span>
<span class="title">Sign Out</span>
</a>
</li>
</ul>
</div>
<!-- ========================= Main ==================== -->
<div class="main">
<div class="topbar">
<div class="toggle">
<ion-icon name="menu-outline"></ion-icon>
</div>
<h2 class="profile-title">FAQ</h2>
<div class="search">
<label>
<input type="text" id="searchBar" placeholder="Buscar..." onkeyup="searchOnEnter(event)">
<ion-icon name="search-outline"></ion-icon>
</label>
</div>
<div class="user">
<a href="miCuenta.html">
<img src="" alt="Profile Picture" id="indexProfileImg">
</a>
</div>
</div>
<!-- ========================= FAQ ==================== -->
<section>
<h1 class="titleFAQ">FAQ's</h1>
<div class="questions-container">
<div class="question">
<button>
</button>
</div>
<div class="question">
<button>
</button>
</div>
<div class="question">
<button>
</button>
</div>
<div class="question">
<button>
</button>
</div>
</div>
</section>
<!-- Firebase Libraries -->
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-firestore.js"></script>
<!-- Firebase Config -->
<script type="module" src="js/firebase.js"></script>
<!-- =========== Scripts ========= -->
<script src="js/main.js"></script>
<script src="js/FAQ.js"></script>
<script src="js/busqueda.js"></script>
<script type="module" src="/js/index.js"></script>
<script type="module" src="js/mostrarFAQs.js"></script>
<!-- ====== ionicons ======= -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>