-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsobre.html
47 lines (38 loc) · 1.78 KB
/
sobre.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sobre</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body>
<header class="bg-danger text-white text-center py-4">
<div class="container">
<h1>Sobre</h1>
</div>
</header>
<main class="container my-4">
<section id="informacoes" class="mb-4">
<h2 class="text-danger">Fatec de Itapira “Ogari de Castro Pacheco”</h2>
<p>Disciplina – Banco de Dados Não Relacional - DSM</p>
<p>SEGUNDA ATIVIDADE AVALIATIVA </p>
<p>Professor Mateus Fuini</p>
<h3>Desenvolvido por:</h3>
<ul>
<li>André Fonseca - <a href="https://github.com/FonsecaAndre" target="_blank">Github</a></li>
<li>Iago Oliveira - <a href="https://github.com/Iagooalmeida" target="_blank">Github</a></li>
</ul>
<p>Site: <a href="http://www.fatecitapira.edu.br" target="_blank">www.fatecitapira.edu.br</a></p>
<p>Rua Tereza Lera Paoletti, 590 • Jardim Bela Vista • 13974-080 • Itapira • SP • Tel.: (19) 3843-7537</p>
</section>
<section id="voltar" class="text-center">
<a href="index.html" class="btn btn-danger">Voltar</a>
</section>
</main>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</body>
</html>