Last active
June 14, 2020 17:14
-
-
Save aacassandra/58f39882785d5f98209d2416d52008fe to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Iframe (30/33) - part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>sahabatcoding</title> | |
</head> | |
<body> | |
<h3>Halaman Induk / Parent Page</h3> | |
<iframe src="first.html" name="ourFrame" width="300" height="300"> | |
You can see me? | |
</iframe> | |
<br> | |
<a href="first.html" target="ourFrame">Pindah ke halaman 1 / Go to first page</a> | |
<br> | |
<a href="contoh/second.html" target="ourFrame">Pindah ke halaman 2 / Go to second page</a> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment