en.javascript.info/2-ui/1-document/07-modifying-document/11-append-to-list/task.md
Ilya Kantor 508969c13f up
2017-02-28 12:54:48 +03:00

14 lines
200 B
Markdown

importance: 5
---
# Insert the HTML in the list
Write the code to insert `<li>2</li><li>3</li>` between two `<li>` here:
```html
<ul id="ul">
<li id="one">1</li>
<li id="two">4</li>
</ul>
```