-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprofessoroualuno.html
More file actions
97 lines (74 loc) · 3.04 KB
/
Copy pathprofessoroualuno.html
File metadata and controls
97 lines (74 loc) · 3.04 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qual página</title>
<link rel="stylesheet" href="estilos/header_e_footer.css">
<link rel="shortcut icon" href="imagens/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="estilos/professoroualuno.css">
</head>
<body>
<header>
<section id="logo">
<a target="_blank" href="https://profept.ifrn.edu.br/">
<img class="efeito_de_zoom" src="imagens/logo.png" alt="agenda de apresentações" >
</a>
</section>
<section id="icones">
<nav id="nav">
<button id="btn-mobile">
<span id="hamburguer"></span>
</button>
<ul id="menu">
<li>
<a href="index.html" class="efeito efeito_de_carregamento"> Página Inicial</a>
</li>
<li>
<a href="login.html" class="efeito efeito_de_carregamento" rel="next">Login</a>
</li>
<li>
<a href="agendamento.html" class="efeito efeito_de_carregamento" rel="next">Agendamento</a>
</li>
<li>
<a href="suporte.html" class="efeito efeito_de_carregamento" rel="next">Suporte</a>
</li>
<li>
<a href="sobre.html" class="efeito efeito_de_carregamento" rel="next">Sobre</a>
</li>
<li>
<a href="corpodocente.html" class="efeito efeito_de_carregamento" rel="next">Corpo Docente</a>
</li>
<li>
<a href="#" class="efeito efeito_de_carregamento">
<input type="checkbox" name="mudar_tema" id="mudar_tema" >
<label for="mudar_tema" >
<i class="bi bi-sun "></i>
<i class="bi bi-moon"></i>
</label>
</a>
</li>
</ul>
</nav>
</section>
</header>
<main class="escolhas">
<a href="perfilaluno.html" class="aluno escolha">
<h2>
Conta do aluno
</h2>
<img src="imagens/student-animate.svg" alt="aluno">
</a>
<h1>OU</h1>
<a href="perfilprofessor.html" class="professor escolha">
<h2>
Conta do professor
</h2>
<img src="imagens/teacher-animate.svg" alt="professor">
</a>
</main>
</body>
</html>
<script src="Javascript/script.js"></script>