xxxxxxxxxx
<html lang="en">
<head>
<title>Opening Links in an iFrame</title>
<style>
iframe {
width: 100%;
height: 500px;
}
</style>
</head>
<body>
<iframe src="/examples/html/hello.html" name="myFrame"></iframe>
<p><a href="https://www.appwang.com" target="myFrame">Open appwang.com</a></p>
</body>
</html>