Untitled
unknown
html
2 years ago
1.3 kB
2
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hasbii</title> </head> <body> <form action="info.htm" method="POST"> nama : <input type="text" name="nama" size="20" maxlength="20"> <br> Password : <input type="password" name="Password" size="25" maxlength="40"> <br> hoby : <input type="text" name="hobby" size="25" maxlength="40"> <br> pilih mobil : <select name="cars" id=""> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option> </select> <br> <input type="radio" name="matic" id="matic" value="matic"> <label for="matic">MATIC</label><br> <input type="radio" name="manual" id="manual" value="manual"> <label for="manual">MANUAL</label><br> <br> <input type="submit" value="kirim"> <input type="reset" value="kosongkan"> </form> </body> </html>