-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsobre.html
35 lines (34 loc) · 1.67 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Séries Assistidas</title>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<script src="bootstrap/js/popper.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
<script src="bootstrap/js/JQuery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(function(){
$("#menu").load("navbar.html");
});
});
</script>
</head>
<body>
<div class="container">
<div id="menu"></div>
<h1 class="h1 text-center" style="margin-top: 140px; margin-bottom: 15px; background-color: #aaaaaa;">Sobre Nós</h1>
<p class="h4 text-center" style="color: gray">Nós somos uma equipe que busca simplificar sua vida por meio de nosso sistema.</p>
<p class="h4 text-center" style="color: gray">No nosso sistema você pode manter todas as séries que você já assistiu.</p>
<p class="h4 text-center" style="margin-bottom: 40px; margin-top: 15px; background-color: #aaaaaa;">Acsa - Alice - Clara</p>
<div>
<img src="./img/acsa.png" style="width: 30%; margin: 10px; height: 450px;"/>
<img src="./img/alice.png" style="width: 30%; margin: 10px; height: 450px;"/>
<img src="./img/clara.png" style="width: 30%; margin: 10px; height: 450px;"/>
</div>
</div>
</body>
</html>