-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacamLink.html
62 lines (60 loc) · 2.33 KB
/
macamLink.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
55
56
57
58
59
60
61
62
<html>
<title>Membuat Link</title>
<head>
</head>
<body>
<a name="TOP">
<h4>Macam-macam Link</h4>
<a href ="#Link Relatif">Link Relatif</a><br>
<a href ="#Link Absolut">Link Absolut</a><br>
<a href ="#Link with New Window">Link with New Window</a><br>
<a href ="#Link ke Email">Link Ke Email</a>
</a>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<br><br><br><br><br>
<a name="Link Relatif">
<h1> Ini adalah contoh Link Relatif</h1>
<p>Klik <a href="gambar.html">di sini </a> Jika anda ingin menuju ke halaman berikutnya, <br><br>
Lorem dst.. <br><br><br><br><br>
<br><br><br><br><br>
<a href="#TOP">Kembali Ke Menu</a>
</p>
</a><br><br>
<a name ="Link Absolut">
<h1>Ini adalah contoh Link Absolut</h1>
<p>Klik <a href="http://www.google.com">di sini </a> Untuk pencarian yang anda inginkan <br><br>
Lorem dst.. <br><br><br><br><br>
<br><br><br><br><br>
<a href="#TOP">Kembali Ke Menu</a>
</p>
</a><br><br>
<a name ="Link with New Window">
<h1>Ini adalah contoh Link dengan Window Baru</h1>
<p>Buka <a href="http://www.google.com" target="blank">www.google.com </a> Dihalaman baru <br><br>
Lorem dst.. <br><br><br><br><br>
<br><br><br><br><br>
<a href="#TOP">Kembali Ke Menu</a><br><br><br><br><br><br><br>
</p>
</a>
<a name ="Link ke Email">
<h1>Ini adalah contoh Link ke Email</h1>
<p>Anda bisa menghubungi saya di <a href="mailto:dyah.ayu@polinema.ac.id">email ini</a> Untuk pertanyaan lebih lanjut <br><br>
Lorem dst..
</p>
</a>
<br><br>
<a href="#TOP">Kembali Ke Atas</a>
</body>
</html>