Message Box
To show an Alert 'onLoad':
Insert this code in your document:
<body bgcolor="white" text="black" onLoad=alert("Hello")> //Use your required body attributes and message.
To show an Alert 'onClick':
or
Click Here
Insert this code in your document:
<form> <input type="button" VALUE="Click Here" onClick="alert('Welcome to the Groan Zone!')"> <input type="checkbox" onClick="alert('Enjoy Your Visit!')">Click Here </form>
To show an Alert 'onUnload':
Insert this code in your document:
<body bgcolor="white" text="black" onUnload=alert("Goodbye")> //Use your required body attributes and message.