User:Shay Taylor
From The Waste Land Wiki
				
								
				
				
																
				
				
								
				Shay Taylor  (Talk | contribs)  | 
			Shay Taylor  (Talk | contribs)   | 
			||
| Line 1: | Line 1: | ||
| − | <script> alert("Hello") </script>  | + | <!DOCTYPE html>  | 
| + | <html>  | ||
| + | <body>  | ||
| + | |||
| + | <p>Click the button to display an alert box.</p>  | ||
| + | |||
| + | <button onclick="myFunction()">Try it</button>  | ||
| + | |||
| + | <script>  | ||
| + | function myFunction() {  | ||
| + |     alert("Hello! I am an alert box!");  | ||
| + | }  | ||
| + | </script>  | ||
| + | |||
| + | </body>  | ||
| + | </html>  | ||