Code
Execute
<!DOCTYPE html> <html> <head> <style> input[type=text] { width: 150px; display: block; margin-bottom: 10px; background-color: lightblue; } </style> </head> <body> <form name="input" action="" method="get"> Website Name: <input type="text" name="Name" value="Wikitechy" size="50"> </form> </body> </html>
Result