| <!doctype html> | |
| <!-- Copyright (C) 2021 Google Inc. All rights reserved. --> | |
| <!-- Copyright (C) 2021 Apple Inc. All rights reserved. --> | |
| <label> | |
| <input type="checkbox" id="cb"> | |
| Checkbox | |
| </label> | |
| <script> | |
| var checkbox = document.getElementById("cb"); | |
| checkbox.appendChild(document.createTextNode("Checkbox")); | |
| </script> |