[Tex/LaTex] Include a HTML file in a LaTeX-beamer presentation

beamerhtmlpdftex

I have a HTML file available at this URL :

http://khamphouj.iiens.net/ENSIIE/ENSTA/Plot%201.html

And I'd like to put it into my beamer presentation. I don't want it to be static like a .png or .jpg picture, I want, during my presentation (and in my pdf, as you've understood) to be able to hover datas and see all the features of the html document : I want this functionnality to work when I have my mouse on the graph:

\documentclass[fleqn,xcolor=dvipsnames]{beamer}
\usepackage[frenchb]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
% What Packages should I add ?
\begin{document}
    \begin{frame}{Julia performances}
    % What code should I use ?
    \end{frame}
\end{document}

Best Answer

Workaround:

Include a static image as preview which is linked to the website

\documentclass{beamer}

\begin{document}

\begin{frame}
    \href{http://khamphouj.iiens.net/ENSIIE/ENSTA/Plot 1.html}{\includegraphics[height=.99\textheight]{newplot}}
\end{frame} 

\end{document}
Related Question