-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·35 lines (33 loc) · 1.17 KB
/
index.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("navbarIndex.html");
});
});
</script>
</head>
<style>
body {
background-image: url('img/fundo.png');
background-repeat: no-repeat;
background-size: 100%;
}
</style>
<body>
<div class="container">
<div id="menu"></div>
<h1 class="h1 text-center" style="margin-top: 120px; margin-bottom: 15px; color: #aaaaaa gray ; background-color: white;">Séries Assistidas</h1>
</div>
</body>
</html>