How can I embed my company's live public webpage to my company's intranet site I am redesigning now, as I click a link in intranet? I am using iframe. The company public domain is in WordPress. I came across these links, but none could help me: - How do you put only a certain section of a website into an iframe? - Loading wordpress page content in colorbox Iframe
My HTML
<div class="menuItem">
<a href="http://mvrcancerhospital.com/camps/" target="displayBox"> <b>Events</b></a>
</div><br><br>
<div class="menuItem">
<a href="http://mvrcancerhospital.com/news/" target="displayBox"> <b>News</b></a>
</div><br><br>
<iframe src="" frameborder="0" name="displayBox" width="100%" height="400px"> </iframe>
My CSS
.menuItem
{
float: left;
margin-top: 5%;
width: 120px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:15px;
font-weight:bolder;
transition-property: width;
}
.menuItem:hover
{
color: #CB4154;
transform: scale(1.2);
}
.leftSec .menuItem
{
font-size:18px;
}