hola, antes que nada, Bienvenida al foro.
Cita: <html>
<head>
<script>
function verif(n){
if(n.value<1 || n.value>20){
alert("Solo puedes ingresar valores entre 1 y 20");
n.value="";
n.focus();
}
}
</script></head>
<body>
<form name="form1" method="post" action="">
ingrese nota
<input name="nota" type="text" id="nota" onblur="verif(this)">
<input name="e" type="submit" value="Enviar">
</form>
</body>
</html>
saludos