Spaces:
Sleeping
Sleeping
Create Index.html
Browse files- 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>
|