CARVIEW |
Select Language
HTTP/2 200
date: Wed, 08 Oct 2025 01:12:41 GMT
content-type: text/html; charset=utf-8
content-encoding: gzip
content-location: H32.html
vary: negotiate,Accept-Encoding
tcn: choice
last-modified: Thu, 02 Oct 2025 20:17:14 GMT
cache-control: max-age=21600
expires: Wed, 08 Oct 2025 07:12:41 GMT
x-backend: www-mirrors
x-request-id: 98b1c5759e88c1bf
strict-transport-security: max-age=15552000; includeSubdomains; preload
content-security-policy: frame-ancestors 'self' https://cms.w3.org/ https://cms-dev.w3.org/; upgrade-insecure-requests
cf-cache-status: BYPASS
set-cookie: __cf_bm=ykFh7wca_0ntX.OzoAc73kjajjvpeBrDSkbQ9XjkIR4-1759885961-1.0.1.1-2TzSw.QAowXTNcx0iYTev4RMgCEjEwNWWozTDfhqoH1ptPT80H3kt2adf9e3Y0tsbmR4Ai6kb6IoEeTJLZf9I3NRj2iP2UroyOdFWCA12vI; path=/; expires=Wed, 08-Oct-25 01:42:41 GMT; domain=.w3.org; HttpOnly; Secure; SameSite=None
server: cloudflare
cf-ray: 98b1c5759e88c1bf-BLR
alt-svc: h3=":443"; ma=86400
H32: Providing submit buttons | WAI | W3C
Skip to content
Back to Top
Examples of ways to meet WCAG; not required
About WCAG Techniques
Technique H32:Providing submit buttons
About this Technique
This technique relates to 3.2.2: On Input (Sufficient when used with G80: Providing a submit button to initiate a change of context).
This technique applies to content that includes form controls.
Description
The objective of this technique is to provide a mechanism that allows users to explicitly request changes of context. The intended use of a submit button is to generate an HTTP request that submits data entered in a form, so it is an appropriate control to use for causing a change of context.
Examples
Example 1: A basic example of a form with a submit button
<form action="/subscribe" method="post">
<p>Enter your email address to subscribe to our mailing list.</p>
<label for="address">Your email address:</label>
<input autocomplete="email" id="address" name="address" type="text">
<input type="submit" value="Subscribe">
</form>
Related Resources
No endorsement implied.
Related Techniques
Tests
Procedure
- Find all forms in the content.
- For each form, check that it has a submit button (
<input type="submit">
,<input type="image">
, or<button type="submit">
).
Expected Results
- #2 is true