You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Action element Attribute.html

15 lines
365 B
HTML

<html>
<title>Action Attribute</title>
<BODY>
<form action="http://www.happycodings.com" method="post">
Enter the your choice:
<select name="choice">
<option value="X">X
<option value="Y">Y
<option value="Z" selected>Z
</select>
<input type=submit onClick="return false">
</form>
</body>
</html>