HTML CSS examples for HTML Tag:input text
Fill default value for input text field
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!--from w w w . j ava 2 s .c o m--> <body> <input type="text" placeholder="Write local number"> <input type="text" value="6"> </body> </html>