Skip to content

Commit ffe19c0

Browse files
Create index.html
1 parent 6a3f85c commit ffe19c0

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

indtall.md/index.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<style>
5+
.pdf-container {
6+
position: relative;
7+
width: 100%;
8+
max-width: 1280px; /* Matches your Python script width */
9+
margin: 0 auto;
10+
aspect-ratio: 16 / 9; /* Matches 1280x720 ratio */
11+
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
12+
}
13+
iframe {
14+
width: 100%;
15+
height: 100%;
16+
border: none;
17+
}
18+
</style>
19+
</head>
20+
<body>
21+
<div class="pdf-container">
22+
<!-- #toolbar=0 hides the standard browser UI for a cleaner 'app' look -->
23+
<iframe src="web_asset.pdf#toolbar=0&navpanes=0" type="application/pdf"></iframe>
24+
</div>
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)