18 lines
294 B
HTML
18 lines
294 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<button onclick="alert(123)">Click to run a script (doesn't work)</button>
|
|
|
|
<form action="http://google.com">
|
|
<input type="text">
|
|
<input type="submit" value="Submit (doesn't work)">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|