उपकरण मार्गदर्शक
हाँ — Tentaco स्टूडियो मुफ़्त हैं और खाते की आवश्यकता नहीं है।
अधिकांश मोड पूरी तरह आपके ब्राउज़र में चलते हैं। सर्वर-आधारित सुविधाएँ (फ़ाइल शेयर, DNS लुकअप) गोपनीयता बैज से स्पष्ट रूप से चिह्नित हैं।
एक वर्कस्पेस में 7 मोड — पेज छोड़े बिना साइडबार से तुरंत स्विच करें।
Tentaco PWA की बदौत पहली विज़िट के बाद कई स्टूडियो ऑफ़लाइन काम करते हैं। सर्वोत्तम ऑफ़लाइन अनुभव के लिए ऐप इंस्टॉल करें।
Download or copy the full HTML document.
ZIP with index.html, styles.css, script.js, assets/, and README-DEPLOY.md
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
</style>
</head>
<body>
<script>
(function() {
function sendError(msg) {
parent.postMessage({ type: "html-studio-preview-error", message: String(msg) }, "*");
}
window.onerror = function(msg) { sendError(msg); };
window.addEventListener("unhandledrejection", function(e) {
sendError(e.reason);
});
["log", "warn", "error"].forEach(function(level) {
var orig = console[level];
console[level] = function() {
var msg = Array.prototype.slice.call(arguments).map(function(a) {
try { return typeof a === "object" ? JSON.stringify(a) : String(a); }
catch (e) { return String(a); }
}).join(" ");
parent.postMessage({ type: "html-studio-console", level: level, message: msg }, "*");
orig.apply(console, arguments);
};
});
})();
</script>
<script>
</script>
</body>
</html>