2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

html で pdf を表示する

Last updated at Posted at 2018-04-05

Firefox と Chrome で表示されることを確認しました。

width="100%" height="500" とwidth だけ% 表示にすると見やすくなります。

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>PDF</title>
</head>
<body>
<h2>PDF</h2>
<object data="images/cities.pdf" width="100%" height="500"></object>
<p />
Dec/30/2023<p>
</body>
</html>

ブラウザーでアクセス

image.png

表示に使った PDF ファイルの確認

evince images/cities.pdf

image.png

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?