Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Last active June 14, 2020 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aacassandra/58f39882785d5f98209d2416d52008fe to your computer and use it in GitHub Desktop.
Save aacassandra/58f39882785d5f98209d2416d52008fe to your computer and use it in GitHub Desktop.
Belajar HTML: Membuat Iframe (30/33) - part 1
<!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