-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpet-page.html
32 lines (32 loc) · 1.41 KB
/
pet-page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pet Description</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="feed.css" />
<script src="https://kit.fontawesome.com/355d6f4d57.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="feed.js"></script>
<script src="pet-page.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body onload="loadPet()">
<header>
<div class="title-small">Pet-Tential</div>
<div class="nav-buttons">
<a class = "btn" href="feed.html"><i class="fas fa-home fa-lg"></i></a>
<a class="btn" href="saved_pets_index.html"><i class="far fa-heart fa-lg"></i></a>
<a class="btn" href="account.html"><i class="fas fa-user-cog fa-lg"></i></a>
<a class="btn" href="goodBye.html" onclick="signOut();"><i class="fas fa-sign-out-alt fa-lg"></i></a>
</div>
</header>
<section class="more-pet-info" id="root">
</section>
<script src="authorizationKey.js"></script>
<script src="dataFormatting.js"></script>
<script src="feed.js"></script>
</body>
</html>