Pembuatan form biodata dengan input
text
Berikut ini adalah contoh dari sebuah halaman web
yang berisi form yang sederhana :
<html>
<head>
<title> Form 1 </title>
</head>
<body>
<form name=”form1” method=”POST” action=”inputdata.php”>
Nama : <input
type="text" name="nama"><br><br>
Kelas: <input
type="text" name="kelas"
maxlength="2"><br><br>
No : <input type="text"
name="nomor"
value="10"><br><br>
Hobby: <input
type="text" name="hobby"
size="8"><br><br>
Password: <input
type="password" name="password">
<br><br>
<input type="submit" name="submit"
value="Submit"> <input
type="reset"
name="reset" value="Reset">
</form>
</body>
</html>