Embed html5 banner inside another html page

html

Solution

Use `iframe` to embed other html document into your page

<iframe src="#"></iframe>

Problem

I have a html5 banner that I've been supplied with that has some animations and so on. How would I embed this inside an already existing html document? I don't want to grab the code from the html5 document, instead it would be nice if I could link to the html5 banner.. I don't know if this is possible though. ``` <html> <body> <!-- Embed html5 banner here --> <div src="/assets/html5banner.html" /> <!-- Something like that, I don't know --> </body> </html> ``` Any push in the right direction would really be appreciated! Thanks

Original source