-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.html
86 lines (81 loc) · 2.25 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
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
<html>
<head>
<title>Disciplinas Computação FCT Unesp</title>
<link rel="stylesheet" href="public/styles/index.css" />
<link rel="stylesheet" href="public/styles/grade.css" />
<link
href="http://fonts.googleapis.com/css?family=Roboto"
rel="stylesheet"
type="text/css"
/>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body onload="gera_tabela(),carrega_tema()">
<nav>
<img
onclick="acao()"
id="cacicID"
class="logo"
src="public/imagens/logo-cacic.png"
/>
<h1>Grade de Disciplinas da Computa FCT-Unesp</h1>
<div class="seleciona-modo" style="width: 200px">
<select id="temas"></select>
</div>
</nav>
<main>
<div class="warning">
<p>As informações desta página estão incompletas</p>
</div>
<table>
<tr>
<th></th>
<th class="titulo-th">1º ano</th>
<th class="titulo-th">2º ano</th>
<th class="titulo-th">3º ano</th>
<th class="titulo-th">4º ano</th>
</tr>
<tr>
<th>1º semestre</th>
<th>
<div class="semestre1"></div>
</th>
<th>
<div class="semestre1"></div>
</th>
<th>
<div class="semestre1"></div>
</th>
<th>
<div class="semestre1"></div>
</th>
</tr>
<tr>
<th>2º semestre</th>
<th>
<div class="semestre2"></div>
</th>
<th>
<div class="semestre2"></div>
</th>
<th>
<div class="semestre2"></div>
</th>
<th>
<div class="semestre2"></div>
</th>
</tr>
</table>
</main>
<footer>
<p>Para contribuir com essa página, acesse o repositório :</p>
<a href="https://github.com/fct-coders/grade-da-computa" target="blank">
https://github.com/fct-coders/grade-da-computa
</a>
</footer>
<script src="public/scripts/grade.js"></script>
<script src="public/scripts/mudatema.js"></script>
<script src="public/scripts/system.js"></script>
</body>
</html>