I want to embed this list on my website for free
To Embed this list on your website simply copy and paste the iframe javascript code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Full Width Iframe</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
iframe {
border: none;
width: 100%;
height: 100vh;
}
</style>
</head>
<body>
<iframe id="dynamic-iframe" src="https://flairtalk.online" onload="resizeIframe(this)"></iframe>
<script>
function resizeIframe(iframe) {
iframe.style.height = iframe.contentWindow.document.body.scrollHeight + 'px';
}
window.addEventListener('resize', function() {
var iframe = document.getElementById('dynamic-iframe');
resizeIframe(iframe);
});
</script>
</body>
</html>
If you see any inacuracies in this list please comment here or mention it in the discussions tab. We are relying on the community to keep this resource up to date and usefull!