-
Notifications
You must be signed in to change notification settings - Fork 0
/
professor1.html
85 lines (72 loc) · 2.9 KB
/
professor1.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
<!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="jumbotron">
<h1>Sistema Tutor Inteligente</h1>
<p>Bootstrap is the most popular HTML, CSS, and JS framework for developing
responsive, mobile-first projects on the web.</p>
</div>
<div class="page-header">
<h1>Alunos Cadastrados <small>Colégio Rui Barbosa 6 ano</small></h1>
</div>
<div class="row">
<br>
<br>
<br>
<div class="portfolio-item col-md-offset-1 col-md-10">
<table class="table table-hover">
<thead>
<tr>
<th>Nome do aluno</th>
<th>Email</th>
<th>Mais informações</th>
</tr>
</thead>
<tbody>
<tr>
<td>Maria Aparecida</td>
<td>[email protected]</td>
<td><a class="btn btn-primary btn-sm" href="professor4.html" role="button">Mais</a></td>
</tr>
<tr>
<td>João da Silva</td>
<td>[email protected]</td>
<td><a class="btn btn-primary btn-sm" href="#" role="button">Mais</a></td>
</tr>
<tr>
<td>Marcos Felipe Marques</td>
<td>[email protected]</td>
<td><a class="btn btn-primary btn-sm" href="#" role="button">Mais</a></td>
</tr>
</tbody>
</table>
<br>
<br>
<br>
<div class="row text-center">
<div class="col-lg-12">
<a class="btn btn-primary btn-lg" href="professor3.html" role="button">Voltar</a>
</div>
</div>
</div>
</div>
</div>
<!-- /.container -->
</body>
</html>