Siteβ―Builder
Editing:
PromptinatorAuto.html
writable 0666
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>PromptinatorβAuto demo</title> <!-- 1. Your own CSS, libraries, etc. go here --> <!-- 2. PromptinatorβAuto (external file) βΒ save the script you received as βpromptinatorβauto.jsβ. βΒ adjust the path below to where you placed the file. --> <script src="/js/promptinator-auto.js" defer></script> <!-- β’ `defer` tells the browser to download the file in parallel and run it after HTML parsing is finished, so DOM is ready. β’ You can omit `defer` and move the <script> to the very end of <body> if you prefer. Either way works because the file waits for DOMContentLoaded before it wires anything up. --> </head> <body> <h1>Example form</h1> <textarea rows="6" placeholder="Textarea #1 β¦"></textarea> <p>Some content in between β¦</p> <textarea rows="6" placeholder="Textarea #2 β¦"></textarea> <!-- 3. If you placed the <script> up in <head> with `defer`, you do **not** need another reference down here. --> </body> </html>
Save changes
Create folder
writable 0777
Create
Cancel