JSFiddle - React, Tailwind, and code Playground
by fredd man
HTML
<head>
<meta name="referrer" content="never" />
</head>
<body>
<!-- Add a placeholder for the Twitch embed -->
<div id="twitch-embed"></div>
<!-- Load the Twitch embed JavaScript file -->
<script src="https://embed.twitch.tv/embed/v1.js"></script>
<!-- Create a Twitch.Embed object that will render within the "twitch-embed" element -->
<script type="text/javascript">
new Twitch.Embed("twitch-embed", {
width: 854,
height: 480,
channel: "7777twitch",
// Only needed if this page is going to be embedded on other websites
parent: ["jsfiddle.net", "jsfiddle.net"]
});
</script>
</body>