<html>
<head>
</head>
<body>
<script>
var ch;
ch=prompt("enter any alphabet from a to z");
switch(ch)
{
case 'a':[Link]("it is a vowel");
break;
case 'e':[Link]("it is a vowel");
break;
case 'i':[Link]("it is a vowel");
break;
case 'o':[Link]("it is a vowel");
break;
case 'u':[Link]("it is a vowel");
break;
default:[Link]("it is a consonent");
}
</script>
</body>
</html>