Skip to content

Commit

Permalink
fixed linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jongund committed Jan 19, 2025
1 parent 9411b86 commit f11c741
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions content/patterns/landmarks/landmarks-pattern.html
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ <h2>Banner Design Pattern</h2>
HTML Techniques
</span>
</button>
<button id="tab-manner-aria"
<button id="tab-banner-aria"
tabindex="-1"
aria-controls="tabpanel-banner-aria"
role="tab">
Expand Down Expand Up @@ -574,32 +574,32 @@ <h3>HTML Form Landmark Example</h3>

<h3>HTML Form Landmark Example</h3>
<p>Assume the following two forms (e.g. add contact and add organization) can be independently submitted from the same web page.</p>
<form aria-labelledby="contact_html5">
<form aria-labelledby="contact_aria">
<fieldset>
<legend id="contact_html5">Add Contact</legend>
<legend id="contact_aria">Add Contact</legend>

<label for="name_html5">Name</label>
<input id="name_html5" type="text" size="25">
<label for="name_aria">Name</label>
<input id="name_aria" type="text" size="25">

<label for="email_html5">E-mail</label>
<input id="email_html5" type="text" size="25">
<label for="email_aria">E-mail</label>
<input id="email_aria" type="text" size="25">

<label for="phone_html5">Phone</label>
<input id="phone_html5" type="text" size="25">
<label for="phone_aria">Phone</label>
<input id="phone_aria" type="text" size="25">

<input type="submit" value="Add Contact">

</fieldset>
</form>
<form aria-labelledby="organization">
<fieldset>
<legend id="organization_html5">Add Organization</legend>
<legend id="organization_aria">Add Organization</legend>

<label for="org_html5">Organization</label>
<input id="org_html5" type="text" size="25">
<label for="org_aria">Organization</label>
<input id="org_aria" type="text" size="25">

<label for="www_html5">WWW</label>
<input id="www_html5" type="text" size="25">
<label for="www_aria">WWW</label>
<input id="www_aria" type="text" size="25">

<input type="submit" value="Add Organization">
</fieldset>
Expand Down

0 comments on commit f11c741

Please sign in to comment.