Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> label { display: inline-block; width: 150px; } </style> </head> <body> <form> <label for="name">Enter your name:</label> <input id="name" name="name" type="text" /> </form> </body> </html>