-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.html
More file actions
101 lines (94 loc) · 4.49 KB
/
main.html
File metadata and controls
101 lines (94 loc) · 4.49 KB
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
<!DOCTYPE html>
<html lang="en" translate="no">
<head>
<title>Exam Lab</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="assets/styles/main.css">
<!-- JS -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js" type="text/javascript"></script>
<script src="assets/js/language.js" type="text/javascript"></script>
<script src="assets/js/main.js" type="text/javascript"></script>
</head>
<body>
<header>
<a href="main.html" class="title">
<h1>Exam Lab</h1>
</a>
<div class="label-select">
<img src="./assets/images/bandeira_en.png" alt="en" title="English" onclick="switchLanguage('en')">
<img src="./assets/images/bandeira_pt.png" alt="pt-BR" title="Português" onclick="switchLanguage('pt-BR')">
<img src="./assets/images/bandeira_es.png" alt="es-ES" title="Español" onclick="switchLanguage('es-ES')">
</div>
</header>
<content class='container'>
<div class="infos">
<div lang="en">
Welcome to Exam-Lab! <br>
A <b>FREE</b> site to study for your certified exam. <br>
You have multiple ways to study from here like answer random questions, do a exam simulate or get important links to improve your studies.
</div>
<div lang="pt-BR">
Bem vindo a Exam-Lab! <br>
Um site <b>GRÁTIS</b> para estudar para as suas provas de certificações. <br>
Você tem multiplas formas de estudar aqui como responder a questões aleatórias da prova, realizar o simulado ou adquirir links importantes para impulsionar os seus estudos.
</div>
<div lang="es-ES">
¡Bienvenido al Exam-lab! <br>
Un sitio <b>GRATUITO</b> para estudiar para tu prueba certificado. <br>
Tienes múltiples formas de estudiar desde aquí, como responder preguntas aleatorias, simular un examen, u obtener enlaces importantes para mejorar tus estudios.
</div>
</div>
<div class="exam-title">
<span lang="en">Certifications</span>
<span lang="pt-BR">Certificações</span>
<span lang="es-ES">Certificaciones</span>
</div>
<div class="exams">
</div>
<section class="modal hidden">
<div class="close">
<button class="btn-close">⨉</button>
</div>
<div class="title">
<h3 lang="en">Select how you prefer study</h3>
<h3 lang="pt-BR">Selecione como deseja estudar</h3>
<h3 lang="es-ES">Selecciona cómo quieres estudiar</h3>
</div>
<div class="modal-actions">
<a class="modal-btn random" href="#">
<span lang="en">Random Mode</span>
<span lang="pt-BR">Modo Aleatório</span>
<span lang="es-ES">Modo aleatorio</span>
</a>
<a class="modal-btn simulation" href="#">
<span lang="en">Simulator Mode</span>
<span lang="pt-BR">Modo Simulador</span>
<span lang="es-ES">Modo Simulador</span>
</a>
</div>
</section>
<div class="overlay hidden"></div>
</content>
<footer>
<small>
<p lang="en">
<a href="https://github.com/dfop02/exam-lab">Contributing page to Exam Lab here</a>
|
<a href="dcma.html">CopyRights & DMCA</a>.
</p>
<p lang="pt-BR">
<a href="https://github.com/dfop02/exam-lab">A Página de Contribuição do Exam Lab</a>
|
<a href="dcma.html">CopyRights & DMCA</a>.
</p>
<p lang="es-ES">
<a href="https://github.com/dfop02/exam-lab">La página de contribución del Exam Lab</a>
|
<a href="dcma.html">CopyRights & DMCA</a>.
</p>
</small>
</footer>
</body>
</html>