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 script and textfield...

16 lines
324 B
HTML

<html>
<body>
<form name="input" action="setup.asp" method="get">
Type your name:
<input type="text" name="Name" value="Clementine" size="25">
<br>Type your favorite movie:
<input type="text" name="favoritemovie" value="Love" size="25">
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>