I created a page divided in 3 frames, the code is:
<html>
<head>
<title>Home</title>
</head>
<frameset rows="100,*">
<frame src="title.html" name="title" noresize="noresize">
<frameset cols="100,*" noresize="noresize">
<frame src="index.html" name="index">
<frame src="body.php" name="body">
</frameset>
</frameset>
</html>
In the index frame i want to insert a link to a https page (e.g. https://www.google.it/) that opens in the frame body, but when the link is clicked it opens nothing. Here is the code of the index frame:
<html>
<a href="https://www.google.it/" target="body">Google</a>
</html>
I tried with links that don't use https protocol and it works,so i don't know what's the problem.