Html 我的导航栏和搜索功能上的表单标签缺失且为空

Html 我的导航栏和搜索功能上的表单标签缺失且为空,html,Html,有人能帮我修复我的代码吗?它没有通过chrome和wave的可访问性测试 搜索功能(空表单标签和缺少表单标签) 搜索表格: 搜寻 和我的导航栏(空表单标签) 多谢各位 <section role='search'> <form action='/search' id='hbz-searchbox' method='get'> <fieldset> <legend>Search form:</legend>

有人能帮我修复我的代码吗?它没有通过chrome和wave的可访问性测试

搜索功能(空表单标签和缺少表单标签)


搜索表格:
搜寻
和我的导航栏(空表单标签)


多谢各位

<section role='search'>
<form action='/search' id='hbz-searchbox' method='get'>
  <fieldset>
    <legend>Search form:</legend>
    <label for='s'>
    <input id='hbz-input' name='q' placeholder='Search...' type='text'/>
    <input name='max-results' type='hidden' value='8'/>
     </label>
    <button class='hbz-submit' title='search something' type='submit'>Search</button>
    </fieldset>
</form>
</section>
  <nav id='navi-templatoid'> 
  <input type='checkbox'/> 
  <label><i class='fa fa-bars'/></label> 
  <ul> 
  <li><a expr:href='data:blog.homepageUrl'>Home</a></li>
 <li><a href='/test'>test</a></li>
  </ul> 
  </nav>