mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2025-12-29 11:45:20 -05:00
20 lines
556 B
HTML
Executable File
20 lines
556 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>HTML Test Page</title>
|
|
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
Test Iframe PDF:<br>
|
|
<iframe width="50%" height="600px" src="https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/44678.pdf"></iframe>
|
|
</div>
|
|
|
|
<div>
|
|
Test Embed PDF:<br>
|
|
<embed width="50%" height="600px" type='application/pdf' src="https://static.googleusercontent.com/media/research.google.com/en//pubs/archive/44678.pdf">
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|