A script, for example, can either be linked:
<script src="myscript.js"></script>
or embedded:
<script type="text/javascript">
//myscript
</script>
Is there a way to do this with iframes? Manually embed a webpage within a webpage before reaching the client's browser?
To the same effect, is it similarly possible to embed the decoded base64 of an image between img tags?