How to Only Access Webpage in Desktop

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Desktop Only Page</title>
<style>
@media (max-width: 1024px) {
.hidden-xs {
display: none !important;
}
}
.mobile-message {
display: none;
text-align: center;
margin-top: 20%;
font-size: 1.5em;
color: red;
}

@media (max-width: 1024px) {
.mobile-message {
display: block;
}
}
</style>
</head>
<body>
<div class="hidden-xs">
<h2><p>HELLO WORLD</p></h2>
</div>
<div class="mobile-message">This page is only accessible on desktop devices.</div>
</body>
</html>

3 Comments

Image
Killian Mider
Jul 22, 2023 | 7:10 PM

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam.

Image
Everly Leah
Jul 23, 2023 | 7:10 PM

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat.

Image
Michel Ohio
Jun 14, 2023 | 7:10 PM

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam.

Leave A Comment

Your email address will not be published. Required fields are marked.