-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
81 lines (79 loc) · 2.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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</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 rel="stylesheet" href="Assets/style.css" />
</head>
<body>
<div class="logo">
<img
src="images/PawsCity_logo3.png"
alt="logo"
class="level-item logosize"
/>
</div>
<div id="inputbox-container">
<form>
<input
class="input level-item"
type="text"
placeholder="TYPE CITY, PRESS 'ENTER', CLICK CATEGORY"
style="margin: 0 auto;"
/>
</form>
</div>
<br />
<br />
<div class="tile is-ancestor">
<div class="tile is-parent">
<article class="tile is-child box">
<a href="adoption.html">
<img src="images/index/adoption1.jpg" alt="adoption center" />
</a>
</article>
</div>
<div class="tile is-parent">
<article class="tile is-child box">
<a href="dog-friendly.html">
<img
src="images/index/petfriendly1.jpg"
alt="Pet-Friendly Places"
/>
</a>
</article>
</div>
<div class="tile is-parent">
<article class="tile is-child box">
<a href="park.html">
<img src="images/index/petparks1.jpg" alt="Pet Parks" />
</a>
</article>
</div>
<div class="tile is-parent">
<article class="tile is-child box">
<a href="PetStores.html">
<img src="images/index/petstores1.jpg" alt="Pet Stores" />
</a>
</article>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="Assets/script.js"></script>
</body>
</html>