Spaces:
Running
Running
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Telegram Web App</title> | |
| <script src="https://telegram.org/js/telegram-web-app.js"></script> | |
| </head> | |
| <body> | |
| <h2>Welcome ๐</h2> | |
| <p>This app is opened from Telegram.</p> | |
| <button onclick="sendData()">Send Data to Bot</button> | |
| <script> | |
| const tg = window.Telegram.WebApp; | |
| tg.ready(); | |
| function sendData() { | |
| tg.sendData("Hello from Hugging Face!"); | |
| } | |
| </script> | |
| </body> | |
| </html> |