forked from nata-stelmakh/PawsCity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdog-friendly.html
91 lines (83 loc) · 2.63 KB
/
dog-friendly.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/@petfinder/petfinder-js/dist/petfinder.min.js"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Paws City/Pet-friendly Places</title>
<!-- bulma link -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.0/css/bulma.min.css"
/>
<!-- JQuery -->
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<!-- link to style.css -->
<link rel="stylesheet" href="Assets/style.css" />
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img
src="images/PawsCity_logo3.png"
alt="logo3"
style="width: 100px; height: 28px;"
/>
</a>
<a
role="button"
class="navbar-burger burger"
aria-label="menu"
aria-expanded="false"
data-target="navbarBasicExample"
onclick="document.querySelector('.navbar-menu').classList.toggle('is-active');"
>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item" href="adoption.html">
Adoption Centers 🐾
</a>
<a class="navbar-item" href="dog-friendly.html">
Pet-Friendly Places 🐾
</a>
<a class="navbar-item" href="park.html">
Parks 🐾
</a>
<a class="navbar-item" href="PetStores.html">
Pet Stores 🐾
</a>
</div>
</div>
<div class="navbar-end">
<form>
<input
class="input"
type="text"
placeholder="Search City..."
style="margin-top: 6px;"
/>
</form>
<span class="icon is-left">
<i class="fas fa-search" aria-hidden="true"></i>
</span>
</div>
<br />
</nav>
<div class="dogfriendlyContainer" id="dogfriendlyCards"></div>
<div class="placeholder level-item">
<img src="images/index/placeholder1.jpg" alt="placeholder 1" />
</div>
<script src="Assets/script.js"></script>
</body>
</html>