-
Notifications
You must be signed in to change notification settings - Fork 0
/
petList.html
140 lines (129 loc) · 5.47 KB
/
petList.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Gloria+Hallelujah&family=Montserrat&family=Open+Sans&display=swap" rel="stylesheet">
<title>PetSpace</title>
<!-- jQuery Library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body id="petList">
<!-- Container to wrap everything -->
<div id="container">
<!-- Brand of website -->
<header>
<div class="main-header">
<div class="logo">
<img src="/images/paw-logo-4.jpg" alt="PetSpace's Logo">
</div>
<nav class="main-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li class="active"><a href="petList.html">Find a pet</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav> <!-- End of main nav -->
</div>
</header>
<!-- Main content -->
<main>
<!-- <img src="images/group-pets-2.jpg" alt="group of pets" width="70%" height="auto" class="hero-img"> -->
<!-- <hr width="50%"> -->
<div>
<h1>Happy Shopping!</h1>
<hr width="50px" align="left">
<p>There are just dogs for now but hang tight! We have a wide variety for you to choose from!</p>
</div>
<div id="pet-gallery-container">
<ul id="petGallery">
<!-- <li id="photo1">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2>Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
</li>
<li id="photo2">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2>Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
</li>
<li id="photo3">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2>Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
</li>
<li id="photo4">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2>Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
</li>
<li id="photo5">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2>Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
</li>
<li id="photo6">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2>Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
</li>
<li id="photo7">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2>Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
</li>
<li id="photo8">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2>Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
</li>
<li id="photo9">
<img src="https://placedog.net/300/300?id=x" alt="Dog image">
<h2 class="name">Name</h2>
<h3>Type</h3>
<p>Sex</p>
<p>Location</p>
<div class='description'>
<p>Description</p>
</div>
</li> -->
</ul>
<!-- Info box content -->
<div id="info-box">
<h2 id="pet-name"></h2>
<p id="more-info"></p>
<p id="close-link">Click This To Close</p>
</div>
<div class="backdrop"></div>
<div class="box">
<div class="close">x</div>
</div>
</div>
</main> <!-- End of main content -->
</div> <!-- End container -->
<!-- Footer info -->
<footer>Made with ❤️ by Shandira <br> © Copyright 2022</footer>
<script src="js/pet_gallery.js"></script>
<script src="js/lightbox.js"></script>
</body>
</html>