Run
Back to
HTML value Attribute
<form action="formscript.php" method="post"> <label for="name">Name:</label><br> <input type="text" id="name" name="name" value="John Doe"> <br><br> <label for="email">Email:</label><br> <input type="email" id="email" name="email" value="john.doe@example.com"> <br><br> <input type="submit" value="Submit"> </form>