Puede mostrarse un PDF embebido dentro de un HTML con el siguiente código:
<html>
<body>
<embed src=»manual.pdf» width=»500″ height=»375″>
</body>
</html>
Por otro lado, si no queremos que el PDF se pueda guardar, podemos deshabilitar la barra de herramientas, de esta forma:
<html>
<body>
<embed src=»manual.pdf#toolbar=0″ width=»500″ height=»375″>
</body>
</html>
(agregando #toolbar=0).