tryit_yourcode See Results <!DOCTYPE html> <html> <body> <h2>The formtarget Attribute</h2> <form action="/sample_page.php"> First name: <input type="text" name="fname"><br><br> Last name: <input type="text" name="lname"><br><br> <input type="submit" value="Submit as normal"> <input type="submit" formtarget="_blank" value="Submit to a new window/tab"> </form> </body> </html>