-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (48 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Delta V Pet Adoption Center</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="JS/code.js"></script>
</head>
<body>
<header>
<h1>Delta V Pet Adoption Center</h1>
<nav>
<ul>
<li><a href="html/dog.html">Dogs</a></li>
<li><a href="html/cat.html">Cats</a></li>
<li><a href="html/lizard.html">Lizards</a></li>
</ul>
</nav>
</header>
<main>
<script>botherOnOpening()</script>
<h2> Featured Creatures </h2>
<p> These creatures are notable. </p>
<img src="https://images.unsplash.com/photo-1518020382113-a7e8fc38eac9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1917&q=80"
alt="dog" width="200">
<!-- <a href="html/dog.html">See Other Dogs.</a> -->
<img src="https://images.unsplash.com/photo-1533738363-b7f9aef128ce?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1935&q=80"
alt="cat" width="200">
<!-- <a href="html/cat.html">See Other Cats.</a> -->
<img src="https://media.gettyimages.com/id/653904254/photo/lizard-on-a-push-scooter-with-blue-hat-on-head.jpg?s=2048x2048&w=gi&k=20&c=cPf4_QyVofO_EMABZJbb70AqWjzAUWQ39pWKRMmPPvI="
alt="lizard" width="200">
<!-- <a href="html/lizard.html">See Other Lizards.</a> -->
<p id="bob">Which kind of animal are you interested in?</p>
<button onclick=" window.location.href='html/dog.html' ;">See Other Dogs</button>
<button onclick=" window.location.href='html/cat.html' ;">See Other Cats</button>
<button onclick=" window.location.href='html/lizard.html' ;">See Other Lizards</button>
<!-- // <button onclick=" window.location.href='https://w3docs.com' ;">
// Click Here
// </button> -->
</main>
<footer>
<!-- <ul id="imageSection"></ul>
<li></li> -->
<p> Established 2023. Not liable for any chaos or destruction caused by animals adopted.</p>
</footer>
</body>
</html>