-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreatingBookmark.htm
More file actions
49 lines (49 loc) · 947 Bytes
/
CreatingBookmark.htm
File metadata and controls
49 lines (49 loc) · 947 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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>CreatingBookmark</title>
<meta charset="UTF-8">
<style>
a:visited
{
color:mediumseagreen;
background-color:tranparent;
text-decoration:underline;
border:2px solid rgb(0,50,233,0.5);
}
a:hover
{
color:indigo;
background-color:rgb(200,200,200);
border:16px solid rgb(150,150,150,0.8);
text-decoration:none;
padding:15px;
}
</style>
<head>
<body>
<a href="#06">Jump to Heading 6...</a>
<br>
<h1>Heading1</h1>
<p>Paragraph1...</p>
<hr><br>
<h1>Heading2</h1>
<p>Paragraph2...</p>
<hr><br>
<h1>Heading3</h1>
<p>Paragraph3...</p>
<hr><br>
<h1>Heading4</h1>
<p>Paragraph4...</p>
<hr><br>
<h1>Heading5</h1>
<p>Paragraph5...</p>
<hr><br>
<h1 id="06">Heading6</h1>
<p>Paragraph6...</p>
<hr><br>
<h1>Heading7</h1>
<p>Paragraph7...</p>
<hr><br>
</body>
</html>