This repository was archived by the owner on Apr 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 1.28 KB
/
index.html
File metadata and controls
39 lines (34 loc) · 1.28 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8">
<title>Manual do professor</title>
<link rel="stylesheet" type="text/css" href="css/principal.css" />
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css" />
<script type="text/javascript" src="js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<!-- menu -->
<div class="col-md-8 col-md-offset-2">
<header class="page-header">
<h1>Guia TIM Tec <small>Professor</small></h1>
</header>
<h2>Escolha o guia por papel de usuário</h2>
<nav>
<ul class="nav nav-pills nav-stacked">
<li><a href="profcoord.html">Professor Coordenador</a></li>
<li><a href="admin.html">Administrador</a></li>
</ul>
</nav>
</div>
<footer class="visible-print">
<p>Guia plataforma TIM Tec - Instrutor</p>
<p>timtec.com.br</p>
</footer>
</div>
</body>
</html>