Wacks / index.html
Samsonakon23's picture
Update index.html
c2ab730 verified
Raw
History Blame Contribute Delete
473 Bytes
<!DOCTYPE html>
<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>