-
Notifications
You must be signed in to change notification settings - Fork 0
/
prova.html
54 lines (49 loc) · 2.41 KB
/
prova.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simulador POSCOMP</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 min-h-screen flex flex-col">
<div class="flex-grow w-full max-w-5xl flex items-center justify-center mx-auto p-4 flex-col sm:p-8 sm:flex-row">
<div id="board"></div>
<div id="app" class="w-full bg-white p-6 sm:p-8 rounded-lg shadow-lg">
<h1 class="text-2xl sm:text-3xl font-bold text-gray-800 mb-4 text-center">Simulador POSCOMP</h1>
<p class="text-gray-600 mb-6 text-center text-sm sm:text-base">
Este é o simulador do exame POSCOMP. Você terá a oportunidade de praticar questões de Matemática, Fundamentos da Computação e Tecnologia da Computação. Escolha uma forma de iniciar o exame:
</p>
<div class="mb-6">
<h2 class="text-lg sm:text-xl font-semibold text-gray-700 mb-2">Distribuição das Questões</h2>
<ul class="text-gray-600 space-y-2 text-sm sm:text-base">
<li>Matemática: 20 questões</li>
<li>Fundamentos da Computação: 30 questões</li>
<li>Tecnologia da Computação: 20 questões</li>
<li class="font-semibold text-gray-800">Total: 70 questões</li>
</ul>
</div>
<div class="flex flex-col space-y-4">
<button onclick="startExam(true)" class="w-full bg-green-500 text-white font-semibold py-2 sm:py-3 rounded-lg hover:bg-green-600 transition duration-300 text-sm sm:text-base">
Iniciar com Tempo
</button>
<button onclick="startExam()" class="w-full bg-blue-500 text-white font-semibold py-2 sm:py-3 rounded-lg hover:bg-blue-600 transition duration-300 text-sm sm:text-base">
Iniciar Sem Tempo
</button>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800 text-white text-center py-4">
<p class="text-xs sm:text-sm">
Desenvolvido com ❤️ por
<a href="https://github.com/MatthewAraujo" target="_blank" rel="noopener noreferrer" class="text-blue-400 hover:underline">
Matthew Araujo
</a>
</p>
<p class="text-xs mt-1">© 2024. Todos os direitos reservados.</p>
</footer>
<script defer src="prova.js"></script>
<script defer src="index.js"></script>
</body>
</html>