-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
77 lines (70 loc) · 4.04 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>About Us | 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="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>
<div class="Bbody">
<h1>About Us</h1>
<h2>Our Mission</h2>
<p> There are over a million animals in NYC without homes. Strays and animals in shelters are in need of a home. The purpose for this website is to give adoption centers all over NYC that extra boost so that animals are able to find homes. </p>
<h2>Creator Introductions</h2>
<p><strong>April Li</strong><br>
Hello! I'm 15 years old and a rising sophmore in Stuyvesant Highschool. I'm always constantly switching from which animal is my favorite but I guess it'll be cats because they're not too much work to take care of and they're super cute. Also, Nekoma is my favorite team in Haikyuu. Due to COVID-19 I was left with almost nothing to do this summer. Luckily, I discovered Kode With Klossy to learn coding for the first time. It has been a blast so far and me and my team members decided to create this website dedicated to us NYC citizens. </p>
<p><strong>Alison Wu</strong><br>
Hi! I'm 16 yrs old and a rising junior at Hunter College High School. My favorite animal are cats even though I'm allergic. I was inspired to make this website because many animals get abandoned every day and I wish to give them a shelter away from suffering.</p>
<p class="ayana"><strong>Ayana Small</strong><br>
Hi! I'm 18 yrs old and a rising college freshman at Brooklyn College. I have a dog named Georgie. I love all types of animals. I was recommended Kode With Klossy by one of my old high school teachers and this program allowed me to get more coding experience. </p>
</body>
<footer>
<div class="footer">
<div class="footer-content">
<div class="footer-section about">
<h3>Pet Finder</h3>
<p>Pet Finder 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">
Send
</button>
</div>
</div>
<div class="footer-bottom">
© petfinder.com | Designed by Alison Wu, April Li, Ayana Small
</div>
</div>
</footer>
</html>