/Responsive Web Design

17. Create a Text Field

Now let's create a web form.

input elements are a convenient way to get input from your user.

You can create a text input like this:

<input type="text">

Note that input elements are self-closing.


Challenge

Create an input element of type text below your lists.


Prev: 16. Create an Ordered List

Next: 18. Add Placeholder Text to a Text Field