<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="message"></div>
</body>
</html>
$(document).ready(function() {
var message = $("#message");
$(window).resize(function() {
var width = $(window).width();
if (width < 768) {
} else {
}
});
});
#message {
font-size: 20px;
padding: 20px;
background-color: #f1f1f1;
text-align: center;
}