-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponentes.html
More file actions
51 lines (48 loc) · 1.35 KB
/
Copy pathcomponentes.html
File metadata and controls
51 lines (48 loc) · 1.35 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Componentes Curriculares</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<ul>
<li><a href="estudantes.html">Estudantes</a></li>
<li><a href="professores.html">Professores</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</header>
<h1>Técnico em Desenvolvimento de Sistemas</h1>
<h2>Componentes Específicos do Curso</h2>
<table border="1px" >
<thead>
<tr>
<th>Professor(a)</th>
<th>Matéria</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alexandre</td>
<td>Ciências da Computação</td>
</tr>
<tr>
<td>Alexandre</td>
<td>Análise de Sistemas</td>
</tr>
<tr>
<td>Vládismara</td>
<td>Programação Front-End</td>
</tr>
<tr>
<td>Richardson</td>
<td>Banco de Dados</td>
</tr>
<tr>
<td>Richardson</td>
<td>Programação Mobile</td>
</tr>
</body>
</html>