Skip to content

Commit 21480d7

Browse files
fstrrmbgower
andauthored
add missing a to link tags (#4493)
closes #4492 Co-authored-by: Mike Gower <[email protected]>
1 parent fbecc0f commit 21480d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

techniques/html/H97.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ <h3>Multiple <code class="language-html">nav</code> elements and <code class="la
5858
<p>The following example shows a best practice of how landmarks might be added to an HTML document in situations where there are two or more of the same type of landmark on the same page, and there is no existing text on the page that can be referenced as the label:</p>
5959
<pre xml:space="preserve"><code class="language-html">&lt;nav aria-label="Site"&gt;
6060
&lt;ul&gt;
61-
&lt;li&gt;&lt; href="..."&gt;nav link 1&lt;/a&gt;&lt;/li&gt;
62-
&lt;li&gt;&lt; href="..."&gt;nav link 2&lt;/a&gt;&lt;/li&gt;
63-
&lt;li&gt;&lt; href="..."&gt;nav link 3&lt;/a&gt;&lt;/li&gt;
61+
&lt;li&gt;&lt;a href="..."&gt;nav link 1&lt;/a&gt;&lt;/li&gt;
62+
&lt;li&gt;&lt;a href="..."&gt;nav link 2&lt;/a&gt;&lt;/li&gt;
63+
&lt;li&gt;&lt;a href="..."&gt;nav link 3&lt;/a&gt;&lt;/li&gt;
6464
&lt;/ul&gt;
6565
&lt;/nav&gt;
6666
&lt;nav aria-label="Tags"&gt;
@@ -105,4 +105,4 @@ <h2>Resources</h2>
105105
</ul>
106106
</section>
107107
</body>
108-
</html>
108+
</html>

0 commit comments

Comments
 (0)