-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10.html_links.html
More file actions
82 lines (56 loc) · 2.09 KB
/
10.html_links.html
File metadata and controls
82 lines (56 loc) · 2.09 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<body>
<!-- HTML links are hyperlinks.
You can click on a link and jump to another document.
When you move the mouse over a link, the mouse arrow will turn into a little hand. -->
<p><a href="https://www.google.com">Visit google.com</a></p>
<!-- links are defined with the <a> tag
<a href="url">link text</a> -->
<p><a href="4.paragraphs.html">HTML Paragraphs</a> is a link to my local paragraphs html file.</p>
<p><a href="https://www.w3schools.com/" target="_blank">Visit W3Schools in new Tab!</a></p>
<p><a href="https://www.w3schools.com/" target="_self">Visit W3Schools in the same window and same tab (this is default)</a></p>
<p><a href="https://www.w3schools.com/" target="_parent">Visit W3Schools in the parent frame!</a></p>
<p><a href="https://www.w3schools.com/" target="_top">Visit W3Schools in full body of the window!</a></p>
<!-- Image as a link -->
<a href="1.intro.html">
<img src="my_image.gif" alt="HTML Intro page link" style="width:120;height:120;border:0;">
</a>
<!-- Create a Bookmark -->
<p><a href="#C4">Jump to Chapter 4</a></p>
<h2>Chapter 1</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 2</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 3</h2>
<p>This chapter explains ba bla bla</p>
<h2 id="C4">Chapter 4</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 5</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 6</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 7</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 8</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 9</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 10</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 11</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 12</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 13</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 14</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 15</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 16</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 17</h2>
<p>This chapter explains ba bla bla</p>
</body>
</html>