0% found this document useful (0 votes)
54 views1 page

HTML Prompt Window Code Examples

The document provides HTML and JSX code snippets for embedding a prompt window from learnprompting.org. Both code examples include an iframe with specific configurations for width, height, border, and sandbox attributes. The iframe source URL contains a configuration string for the prompt window's settings.

Uploaded by

hitansh.j
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
54 views1 page

HTML Prompt Window Code Examples

The document provides HTML and JSX code snippets for embedding a prompt window from learnprompting.org. Both code examples include an iframe with specific configurations for width, height, border, and sandbox attributes. The iframe source URL contains a configuration string for the prompt window's settings.

Uploaded by

hitansh.j
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

HTML CODE for Prompt window

<iframe
src="[Link]
config=eyJ0b3BQIjoxLCJ0ZW1wZXJhdHVyZSI6MC43LCJtYXhUb2tlbnMiOjEwNTAsI
m91dHB1dCI6IlRoZW4sIHlvdSB3aWxsIHNlZSBvdXRwdXQgc2hvdyB1cCBoZXJlISIsI
nByb21wdCI6Ik1vZGlmeSB0aGUgcHJvbXB0IGhlcmUsIHRoZW4gY2xpY2sgdGhlIGd
yZWVuIEdlbmVyYXRlIE91dHB1dCBidXR0b24iLCJtb2RlbCI6ImdwdC0zLjUtdHVyYm
8ifQ%3D%3D"
style="width:100%; height:500px; border:0; border-radius: 4px;
overflow:hidden;"
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-
same-origin allow-scripts"
></iframe>

JSX code for Prompt window- [Link]

<iframe
src="[Link]
config=eyJ0b3BQIjoxLCJ0ZW1wZXJhdHVyZSI6MC43LCJtYXhUb2tlbnMiOjEwNTAsI
m91dHB1dCI6IlRoZW4sIHlvdSB3aWxsIHNlZSBvdXRwdXQgc2hvdyB1cCBoZXJlISIsI
nByb21wdCI6Ik1vZGlmeSB0aGUgcHJvbXB0IGhlcmUsIHRoZW4gY2xpY2sgdGhlIGd
yZWVuIEdlbmVyYXRlIE91dHB1dCBidXR0b24iLCJtb2RlbCI6ImdwdC0zLjUtdHVyYm
8ifQ%3D%3D"
style={{width:"100%", height:"500px", border:"0", borderRadius:"4px",
overflow:"hidden"}}
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-
same-origin allow-scripts"
></iframe>

You might also like