Stephanie,
Yes, I tried harvesting the embed code. But for some reason, if I try to copy an iframe code snippet, then simply change the 'src=" portion of the code, I get nothing. The code still exists in the html editor, but no result is visible from the saved page.
For example: I copied an iframe code snippet from Chris Long from this thread as shown below...
<iframe src="https://www.classtools.net/random-name-picker/43_miCj6X" style="position:relative;top:0;left:0;width:675px;height:600px;overflow:none;border:none"></iframe>
Then, when this snippet is pasted into a page using the html editor, the result (in html) looks like this...
<p><iframe style="position: relative; top: 0; left: 0; width: 675px; height: 600px; overflow: none; border: none;" src="https://www.classtools.net/random-name-picker/43_miCj6X" width="300" height="150"></iframe></p>
Notice how the <p> tags are now added, and the order of the snippet has changed, where the css 'style' is now following the 'iframe'. Now, the page still 'works' in that the 'src' is still good. But, when I replace the quoted source with another source, something random from YouTube, the result in html looks like this...
<p><iframe style="position: relative; top: 0; left: 0; width: 675px; height: 600px; overflow: none; border: none;" src="https://youtu.be/Tm5fcLgN9r0" width="300" height="150"></iframe></p>
This iframe code results in no visible content on the saved page. Any ideas of what might be happening here?