forked from arjun-sir/Petify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuntime.html
94 lines (90 loc) · 2.63 KB
/
funtime.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
<!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" />
<meta name="description" content="One stop for all (aspiring) pet owners">
<meta name="author" content="FishTank">
<meta property="og:image" content="https://arjun-sir.github.io/Petify/images/logo.png" />
<link rel="stylesheet" href="./styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<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=Lato&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon">
<title>Petify</title>
</head>
<body>
<header>
<div class="container">
<div class="branding">
<a href="index.html"
><img src="./images/logo.png" alt="" width="75px" height="75px"
/></a>
<a href="index.html"><h1>Petify</h1></a>
</div>
<nav>
<ul>
<li><a href="adopt.html">ADOPT</a></li>
<li><a href="./funtime.html">FUN TIME</a></li>
<li><a href="vets.html">NEARBY VETS</a></li>
<li><a href="faq.html">FAQS</a></li>
</ul>
</nav>
</div>
</header>
<br>
<br>
<br>
<br>
<h1>Work in progress</h1>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<footer>
<div class="container">
<div class="branding">
<a href="index.html"
><img
src="./images/logo footer.png"
alt=""
width="75px"
height="75px"
/></a>
<a href="index.html"><h1>Petify</h1></a>
</div>
<p>© 2022 FishTank. All rights reserved</p>
<div class="socials">
<a href="https://www.instagram.com/vinnovateit/" target="_blank"
><img class="white-bg" src="images/instagram.png" alt="insta icon"
/></a>
<a href="https://twitter.com/v_innovate_it" target="_blank"
><img class="white-bg" src="images/twitter.png" alt="twitter icon"
/></a>
<a href="https://github.com/arjun-sir/VinRent" target="_blank"
><img class="white-bg" src="images/github.png" alt="github icon"
/></a>
</div>
</div>
</footer>
</body>
</html>