-
Notifications
You must be signed in to change notification settings - Fork 0
/
cat5.html
79 lines (74 loc) · 2.98 KB
/
cat5.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Tiger | Pet Finder</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="/script.js" defer></script>
</head>
<body>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="gallery.html">Animal Gallery</a>
<a href="centers.html">Adoption Centers</a>
</div>
<div id="main">
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ <img src="logo.png" style="width:110px; margin-bottom:-7px"></span>
</div>
<br>
<div class="Bbody">
<h1> Tiger S </h1>
<img src="cat5.img" alt="cat"> <br>
<p> Vaccine status: taken </p>
<p> Health condition: healthy </p>
<p> Type of Animal: cat </p>
<p> Sex: male </p>
<p> Age: 4 years old </p>
<p> Weight: 12.7 pounds </p>
<p> Color: brown </p>
<p> Animal Center: Brooklyn Animal Care Center </p>
</div>
</body>
<footer>
<div class="footer">
<div class="footer-content">
<div class="footer-section about">
<h3>Stuff</h3>
<p>Stuff is a website that is intended to give adoption centers all over NYC that extra boost so that animals are able to find homes.</p>
<div class="contact">
<span><i class="material-icons" style="font-size:14px"></i> 123-456-7890</span>
<span><i class="material-icons" style="font-size:14px"></i> [email protected]</span>
</div>
</div>
<div class="footer-section links">
<h3>Quick Links</h3>
<br>
<ul>
<a style="text-decoration:none" href="index.html"><li>Home</li></a>
<a style="text-decoration:none" href="about.html"><li>About Us</li></a>
<a style="text-decoration:none" href="gallery.html"><li>Animal Gallery</li></a>
<a style="text-decoration:none" href="centers.html"><li>Adoption Centers</li></a>
</ul>
</div>
<div class="footer-section contact-form">
<h3>Contact us</h3>
<form action="index.html" method="post">
<input type="email" name="email" class="text-input contact-input" placeholder="Your email address...">
<textarea name="message" class="text-input contact-input" placeholder="Your message..."></textarea>
<button type="submit" class="btn btn-big contact-btn">
<i class="email"></i>
Send
</button>
</div>
</div>
<div class="footer-bottom">
© stuff.com | Designed by Alison Wu, April Li, Ayana Small
</div>
</div>
</footer>
</html>