본문 바로가기
Coding/HTML & CSS

[HTML & CSS] pdf 파일 웹에서 보여 주는 초간단 방법 !! (iframe 태그 사용)

by 포스트it 2023. 3. 18.
728x90
반응형

 

[HTML & CSS] pdf 파일 웹에서 보여 주는 초간단 방법 !! (iframe 태그 사용)

바로 코드로 사용하시면 됩니다 :)

 

예제 코드
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
	<!-- pdf경로 입력 -->
    <iframe src="test.pdf" width="100%" height="800px"></iframe>
</body>
</html>
728x90
반응형

댓글