I am trying to pull the first paragraph from this blog into an iframe and display it's contents. Here is the blog: https://www.baronaonlinepoker.com/blog
How would I pull the first paragraph into an iframe? I currently have this code but it only displays upper left corner. It needs to be width="180" height="135". Here's the code!
<!DOCTYPE html>
<html>
<body>
<iframe src="https://www.baronaonlinepoker.com/blog" scrolling="yes" width="180" height="135">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>