-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 1.11 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
<!Doctype HTML>
<html>
<head>
<link rel="stylesheet" href="Main.css">
</head>
<body>
<header>
<ul class="nav">
<li class="nav"><a href="index.html">Home</a></li>
<li class="nav"><a href="./Animals/Cats.html">Cats</a></li>
<li class="nav"><a href="./Animals/Dogs.html">Dogs</a></li>
<li class="nav"><a href="./Animals/Penguins.html">Penguins</a></li>
</ul>
</header>
<figure>
<img onclick="window.location='./Animals/Cats.html' " src="./Images/cat.png" alt="cat">
<figcaption>This is a cute cat section</figcaption>
</figure>
<figure>
<img onclick="window.location='./Animals/Dogs.html'" src="./Images/dog.jpeg" alt="dog">
<figcaption>This is a cute dog section</figcaption>
</figure>
<figure>
<img onclick="window.location='./Animals/Penguins.html' " src="./Images/penguin.jpg" alt="penguin">
<figcaption>This is a cute penguin section</figcaption>
</figure>
<footer>
This is a Footsy
</footer>
</body>
</html>