Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>PuterGPT — Free AI Chat</title> | |
| <script src="https://js.puter.com/v2/"></script> | |
| <style> | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| background: #0d1117; | |
| color: #e6edf3; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| padding: 40px; | |
| } | |
| textarea { | |
| width: 80%; | |
| height: 100px; | |
| border-radius: 10px; | |
| padding: 10px; | |
| border: none; | |
| outline: none; | |
| background: #161b22; | |
| color: #e6edf3; | |
| font-size: 1rem; | |
| } | |
| button { | |
| margin-top: 20px; | |
| padding: 10px 25px; | |
| background: #238636; | |
| color: white; | |
| border: none; | |
| border-radius: 10px; | |
| cursor: pointer; | |
| } | |
| .response { | |
| width: 80%; | |
| margin-top: 30px; | |
| background: #161b22; | |
| border-radius: 10px; | |
| padding: 20px; | |
| white-space: pre-wrap; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>🤖 PuterGPT (Free AI Chat)</h1> | |
| <textarea id="userInput" placeholder="Ask something..."></textarea> | |
| <button id="sendBtn">Send</button> | |
| <div id="response" class="response"></div> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> | |