-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (60 loc) · 2.54 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>PEToGo</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="home.html">PEToGo</a>
</div>
<div class="container">
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="schedulePET.html" >AGENDAR</a></li>
<li><a href="store.html" >PRODUTOS</a></li>
<li><a href="carrinho.html">CARRINHO</a></li>
<li><a id="navName" style="pointer-events: none; cursor: default;">USUÁRIO</a></li>
</ul>
</div>
</div>
</nav>
<header>
<div class="jumbotron text-center">
<img src="img/dog-1517090_640.png" alt="Logo da PEToGo" id="big-logo"/>
<h1>PEToGo</h1>
<p>Cuidamos do seu animal com carinho</p>
</div>
</header>
<div id="content" class="container">
<div class="row">
<div id="userBox" class="col-sm-3 col-md-3 div-user-box">
</div>
<div id="contentBox" class="col-sm-9 col-md-9 div-blue-box" >
</div>
</div>
</div>
<footer>
<ul>
<li><h1>PEToGo</li>
<li><a href="home.html">Home</a> | <a href="carrinho.html">Carrinho</a> | <a href="adminMain.html">Usuário</a> |
<a href="store.html">Produtos</a> | <a href="schedulePET.html">Agendar</a> </li>
<li> <p>Todos os direitos reservados</p></li>
<li><p>Nenhum animal foi ferido durante o curso desse trabalho</li>
</ul>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="jquery-serialize-object.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="single-page-manager.js"></script>
<script src="cart-manager.js"></script>
<script src="pages.js"></script>
</body>
</html>