I am beginner of web programming, my question is how to embed pdf document in html one division tag, and that pdf we can avoid copy, print and download options.
this following is my code.
<html>
<head>
<title>Pdf Document
</title>
</head>
<body>
hello world!
<br>
<div width="500px" height="500px">
<embed src="myfile.pdf#toolbar=0&navpanes=0&scrollbar=0" width="425"
height="425">
</div>
<div width="1px"> hello</div>
</body>
</html>