Yaswanth56 commited on
Commit
6ba37c5
·
verified ·
1 Parent(s): 28b77a1

Create Index.html

Browse files
Files changed (1) hide show
  1. Index.html +34 -0
Index.html ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Embedded DPR Generator</title>
5
+ <style>
6
+ #container {
7
+ position: relative;
8
+ width: 100%;
9
+ height: 900px; /* adjust height */
10
+ }
11
+ iframe {
12
+ width: 100%;
13
+ height: 100%;
14
+ border: none;
15
+ }
16
+ #profile-cover {
17
+ position: absolute;
18
+ top: 10px; /* Adjust according to the badge position */
19
+ right: 10px; /* Adjust according to the badge position */
20
+ width: 150px; /* Width of badge */
21
+ height: 40px; /* Height of badge */
22
+ background-color: white; /* Match your page background */
23
+ z-index: 9999;
24
+ pointer-events: none; /* So clicks pass through */
25
+ }
26
+ </style>
27
+ </head>
28
+ <body>
29
+ <div id="container">
30
+ <iframe src="https://rammohan0504-dpr-5.hf.space/?embed=true" allowfullscreen></iframe>
31
+ <div id="profile-cover"></div>
32
+ </div>
33
+ </body>
34
+ </html>