HTML & CSS Web Design
Html Css > Code Examples
Action script and textfield
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Action script and textfield
<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>