<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: white;
color: black;
}
@media screen and (max-width: 1000px) {
.a {
visibility: hidden;
}
}
@media screen and (min-width: 1400px) {
.a {
visibility: hidden;
}
}
</style>
</head>
<body>
<h1 onclick="alert('clicked a');" class="a">Resize the browser window to see the effect!</h1>
</body>
</html>