| <!DOCTYPE html> |
| <!-- |
| Copyright 2020 The Chromium Authors. All rights reserved. |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. |
| --> |
| <html> |
| <head> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> |
| </head> |
| <body> |
| <form method="POST"> |
| <input type="text" id="fn" autocomplete="given-name"> |
| <input type="text" id="ln" autocomplete="family-name"> |
| <textarea id="sa" autocomplete="street-address"></textarea> |
| <input type="text" id="a1" autocomplete="address-line1"> |
| <input type="text" id="a2" autocomplete="address-line2"> |
| <input type="text" id="ct" autocomplete="locality"> |
| <input type="text" id="zc" autocomplete="postal-code"> |
| <input type="text" id="em" autocomplete="email"> |
| <input type="text" id="ph" autocomplete="tel"> |
| <input type="text" id="fx" autocomplete="fax"> |
| <select id="co" autocomplete="country"> |
| <option value="BR">Brazil</option> |
| <option value="US">United States</option> |
| </select> |
| <input type="submit"> |
| </form> |
| </body> |
| </html> |