-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (38 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="assets/css/index.css">
<link rel="stylesheet" href="assets/css/style.css" />
<script src="assets/js/main.js" defer></script>
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/x-icon" />
<script src="assets/js/interation.js" defer></script>
<!-- lib de icones -->
<script src="https://kit.fontawesome.com/4dd1a9f4a4.js" crossorigin="anonymous"></script>
<title>RECRUTAI</title>
</head>
<body>
<header>
<img src="assets/img/logo.png" width="300" />
<p>
O Recrutaí é um sistema web que auxilia os estudantes de instituições
públicas e privadas a serem recrutados para estágios e projetos de
pesquisa e extensão.
</p>
</header>
<main>
<div class="opAuthentication">
<div class="signout">
<a href="pages/login.html">Login</a>
</div>
<div class="signout">
<a href="pages/registro.html">Cadastre-se</a>
</div>
</div>
</main>
<footer>
<p>© 2024 RECRUTAÍ. Todos os direitos reservados.</p>
</footer>
</body>
</html>