This commit is contained in:
dhruv
2026-05-17 15:30:11 +05:30
commit cae37e5af7
23 changed files with 3607 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Stacked Iframes - Fullscreen</title>
</head>
<body style="margin:0;padding:0;width:100%;height:100%;overflow:hidden;">
<div style="position:relative;width:100vw;height:100vh;">
<!-- Bottom iframe dims in back -->
<iframe
id="iframe-bottom"
src="http://127.0.0.1:5500/4/load.html"
style="position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:1;opacity:0.3;pointer-events:none;">
</iframe>
<!-- Top iframe interactive in front -->
<iframe
id="iframe-top"
src="https://python.langchain.com/docs/introduction/"
style="position:absolute;top:0;left:0;width:100%;height:100%;border:none;z-index:2;">
</iframe>
</div>
</body>
</html>