-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdogs.html
More file actions
38 lines (29 loc) · 736 Bytes
/
Copy pathdogs.html
File metadata and controls
38 lines (29 loc) · 736 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Shepherd Dogs</title>
<link rel="icon" type="image/png" href="paw.png">
</head>
<body>
<a href="index.html"> GO HOME </a>
<hr>
<ul>
<li><a href="#king">King Shepherd</a></li>
<li><a href="#white">White Shepherd</a></li>
<li><a href="#wolfdog">Czechoslovakian Wolfdog</a></li>
<li><a href="#oldshep">Old German Shepherd</a></li>
</ul>
<hr>
<a id="king"></a>
<img src="https://upload.wikimedia.org/wikipedia/commons/6/69/King_Shepherd.jpg" width="500px">
<hr>
<a id="white"></a>
<img src="images/whitedog.jpg" width="500px">
<hr>
<a id="wolfdog"></a>
<img src="images/wolfdog.jpg" width="500px">
<hr>
<a id="oldshep"></a>
<img src="images/oldshepherd.jpg" width="500px">
</body>
</html>