-
Notifications
You must be signed in to change notification settings - Fork 0
/
whales.html
54 lines (40 loc) · 1.11 KB
/
whales.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Links: Task 2</title>
<style>
body {
background-color: #fff;
color: #333;
font: 1em / 1.4 Helvetica Neue, Helvetica, Arial, sans-serif;
padding: 1em;
margin: 0;
}
h1 {
font-size: 2rem;
margin: 0;
color: purple;
}
li {
color: gray;
margin: 0.5em 0;
}
div {
height: 600px;
}
</style>
</head>
<body>
<h1>List path tests</h1>
<ul>
<li><a href="blue/blue-whale.jpg" target="_blank">Link me to the blue whale image</a></li>
<li><a href="../narwhal/narwhal.jpg" target="_blank">Link me to the narwhal image</a></li>
<li><a href="https://www.google.co.in/imghp?hl=en&ogblk" _blank">Link me to Google image search</a></li>
<li><a href="#bottom">Link me to the paragraph at the bottom of the page</a></li>
</ul>
<a href="Info-page-of-Narwhals/index.html">Info-page-of-Narwhals</a>
<div></div>
<p id="bottom">The bottom of the page!</p>
</body>
</html>