Marthee commited on
Commit
6acab05
·
verified ·
1 Parent(s): 2f0690e

Update templates/gui.html

Browse files
Files changed (1) hide show
  1. templates/gui.html +5 -17
templates/gui.html CHANGED
@@ -1,23 +1,11 @@
1
  <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>View PDF in Iframe</title>
7
- <style>
8
- iframe {
9
- width: 100%;
10
- height: 600px;
11
- border: none;
12
- }
13
- </style>
14
- </head>
15
  <body>
16
 
17
- <h2>PDF Viewer</h2>
18
 
19
- <!-- Reference Flask route to embed PDF in an iframe -->
20
- <iframe src="https://www.google.com/"></iframe>
21
 
22
  </body>
23
- </html>
 
1
  <!DOCTYPE html>
2
+ <html>
 
 
 
 
 
 
 
 
 
 
 
 
3
  <body>
4
 
5
+ <h1>The iframe element</h1>
6
 
7
+ <iframe src="https://www.w3schools.com" title="W3Schools Free Online Web Tutorials">
8
+ </iframe>
9
 
10
  </body>
11
+ </html>