Untitled
unknown
plain_text
2 years ago
1.5 kB
6
Indexable
<html><head><base target="_blank"></head><body><h1>Click here</h1>
<button>Unblocked</button>
<script>
var urlObj = new window.URL(window.location.href);
var url = "https://c1ne.co/";
if (url) {
var win;
document.querySelector('button').onclick = function() {
if (win) {
win.focus();
}
else {
win = window.open();
win.document.body.style.margin = '0';
win.document.body.style.height = '100vh';
var iframe = win.document.createElement('iframe');
iframe.style.border = 'none';
iframe.style.width = '100%';
iframe.style.height = '100%';
iframe.style.margin = '0';
iframe.src = url;
win.document.body.appendChild(iframe);
}
document.querySelector('button').style.background='#ff5148';
document.querySelector('button').innerHTML="Game Loaded!";
};
}
</script>
<style>
* {
color: white;
font-family: arial;
text-align: center;
}
button {
width: 220px;
height: 40px;
border-radius: 12px;
background-color: #1F51FF;
font-family: Arial, Helvetica, sans-serif;
border: none;
transition: background-color 500ms;
}
button:hover {
background-color: #1F51FF;
}
</style></body></html>
Editor is loading...