I have a piece of code in an iPython notebook that programmatically generates a folder named 'sound' containing the following files: index.html, canvas.js, graph.js and style.css.
If I open index.html in my browser, I can see exactly the output I want: a graph with a nice JS animation representing vectors in and out of a process I am modeling.

However, I would like to display the HTML file from inside the iPython notebook itself.
For that, I type the following code:
from IPython.display import IFrame
IFrame('/Users/useird/Desktop/sound/index.html', width=700, height=350)
Which returns the following:

I am not an expert with css or js, but I think that iPython can display js inside an iframe, so what's wrong here?
Thanks