--- id: html-form-attributes title: "HTML Form Attributes" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["form attributes", "form action", "form method", "GET vs POST", "form target", "novalidate", "autocomplete"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.90 created_at: 2026-06-23 updated_at: 2026-06-23 review_reason: "" merge_history: [] tags: ["html", "web", "frontend", "forms", "attributes", "w3schools"] raw_sources: ["https://www.w3schools.com/html/html_forms_attributes.asp"] applied_in: [] github_commit: "" --- # [[HTML Form Attributes]] ## π― ν μ€ ν΅μ°° (One-line insight) A `
``` **The Target Attribute** The `target` attribute specifies where to display the response received after submitting the form. The default value is `_self`. [S1] | Value | Description | |---|---| | `_blank` | The response is displayed in a new window or tab | | `_self` | The response is displayed in the current window | | `_parent` | The response is displayed in the parent frame | | `_top` | The response is displayed in the full body of the window | | `framename` | The response is displayed in a named iframe | Example opening the result in a new tab: [S1] ```html ``` Open response in a new tab and skip validation: ```html