Code
<script>
if (window.innerWidth <= 768) {
// ვქმნით კონტეინერს
const container = document.createElement('div');
container.style.display = 'flex';
container.style.justifyContent = 'center';
container.style.alignItems = 'center';
container.style.height = '100vh';
// ვქმნით წითელ ჩარჩოს
const warning = document.createElement('div');
warning.style.border = '3px solid red';
warning.style.padding = '20px';
warning.style.backgroundColor = '#fce4e4';
warning.style.color = '#b71c1c';
warning.style.fontFamily = 'Arial, sans-serif';
warning.style.textAlign = 'center';
warning.style.fontSize = '18px';
// ვქმნით ტექსტს
const message = document.createElement('h1');
message.textContent = 'ამ საიტზე წვდომა მობილურ მოწყობილობებზე არ არის მხოლოდ კომპიუტერით შეიძლება პატივისცემით iswavlemeti.com ';
// ვურთავთ ელემენტებს ერთმანეთთან
warning.appendChild(message);
container.appendChild(warning);
// ვასუფთავებთ body-ს და ვურთავთ ჩვენს სტრუქტურას
document.body.innerHTML = '';
document.body.appendChild(container);
}
</script>