You are on page 1of 1

<html>

<head>
<body>
<script type="text/vbscript">
'alert boxes
MsgBox "VBScript alert box"
MsgBox "VBScript is short for Visual Basic Script", 64, "Info"

'Input box
InputBox "What do you think of VBScript?", "Your opinion"

document.write("Aren't those some cool boxes?")


</script>
</body>
</html>

You might also like