<! DOCTYPE HTML> <html> <head> <title> Example </ title> </ head> <body> <form method = "post" action = "http: // titan: 8080 / form"> <p> <label for = "name"> Name: <input maxlength = "10" id = "name" name = "name" /> </ label> </ p> <p> <label for = "city"> City: <input size = "10" id = "city" name = "city" /> </ label> </ p> <p> <label for = "fave"> Fruit: <input size = "10" maxlength = "10" id = "fave" name = "fave" /> </ label> </ p> <button type = "submit"> Submit Vote </ button> </ form> </ body> </ html>
<! DOCTYPE HTML> <html> <head> <title> Example </ title> </ head> <body> <form method = "post" action = "http: // titan: 8080 / form"> <p> <label for = "name"> Name: <input placeholder = "Your name" id = "name" name = "name" /> </ label> </ p> <p> <label for = "city"> City: <input placeholder = "Where you live" id = "city" name = "city" /> </ label> </ p> <p> <label for = "fave"> Fruit: <input value = "Apple" id = "fave" name = "fave" /> </ label> </ p> <button type = "submit"> Submit Vote </ button> </ form> </ body> </ html>
<! DOCTYPE HTML> <html> <head> <title> Example </ title> </ head> <body> <form method = "post" action = "http: // titan: 8080 / form"> <p> <label for = "name"> Name: <input value = "Adam" disabled id = "name" name = "name" /> </ label> </ p> <p> <label for = "city"> City: <input value = "Boston" readonly id = "city" name = "city" /> </ label> </ p> <p> <label for = "fave"> Fruit: <input id = "fave" name = "fave" /> </ label> </ p> <button type = "submit"> Submit Vote </ button> </ form> </ body> </ html>
Most popular questions within the last 30 days