1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21

content / test / data / accessibility / form-controls / img-form.html [blame]

<html>
  <body>
    <p>Welcome to my example page!</p>
    <img>

    <div>Lengthy instructions on filling out the form.</div>
    <div>Imagine hundreds of nodes that are simple content...</div>

    <form>
      <div>
        <label for="name">Enter your name: </label>
        <input type="text" id="name">
      </div>
      <div>
        <label for="email">Enter your email: </label>
        <input type="email" id="email">
      </div>
    <button value="Subscribe!">Subscribe!</button>
    </form>
  </body>
</html>