-
Notifications
You must be signed in to change notification settings - Fork 0
/
professor3.html
75 lines (65 loc) · 2.53 KB
/
professor3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- menu principal css -->
<link href="css/menu.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/ddmenu.js" type="text/javascript"></script>
<title>Leitura de Frações 1/3</title>
</head>
<body>
<!-- Navigation -->
<a id="ddmenuLink" href="menuprincipal3.html"></a>
<!-- Content -->
<div class="container">
<div class="page-header">
<h1>Turmas Cadastrados</h1>
</div>
<div class="row">
<br>
<br>
<div class="portfolio-item col-md-offset-1 col-md-10">
<table class="table table-hover">
<thead>
<tr>
<th>Nome da Turma</th>
<th>Código</th>
<th>Mais informações</th>
</tr>
</thead>
<tbody>
<tr>
<td>Colégio Rui Barbosa 6 ano</td>
<td>RB6ano</td>
<td><a class="btn btn-primary btn-sm" href="professor1.html" role="button">Mais</a></td>
</tr>
<tr>
<td>Colégio Martin Luther 6 ano A</td>
<td>ML6anoA</td>
<td><a class="btn btn-primary btn-sm" href="#" role="button">Mais</a></td>
</tr>
<tr>
<td>Colégio Cristo Rei 6 ano</td>
<td>CR6ano</td>
<td><a class="btn btn-primary btn-sm" href="#" role="button">Mais</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<br>
<br>
<br>
<div class="row text-center">
<div class="col-lg-12">
<a class="btn btn-primary btn-lg" href="professor2.html" role="button">Cadastrar Turma</a>
</div>
</div>
</div>
</body>
</html>