Skip to content

Commit 437e527

Browse files
authored
Update README.md
1 parent d9a4eab commit 437e527

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

exercises/07-HTML-five-forms/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ HTML5 brings some more cool tricks to forms, here is a few:
44

55
- We are using placeholders to help the user understand how to fill each specific input.
66

7-
- There is now a input `type=email`, use it on the form.
7+
- There is now an input `type=email`, use it on the form.
88

9-
- There is now a input `type=tel`, use it on the form for the phone number.
9+
- There is now an input `type=tel`, use it on the form for the phone number.
1010

11-
- There is now a input `type=url`, use it on the form for the website
11+
- There is now an input `type=url`, use it on the form for the website
1212

13-
- You can use a `required` attribute to make it mandatory. Apply the `required` attribute to the email only (the form won't submit until is not complete).
13+
- You can use the `required` attribute to make it mandatory. Apply the `required` attribute to the email only (the form won't submit until is not complete).
1414

15-
- Using `autofocus` attribute will focus the cursor in that particular input when the website load. Apply the `autofocus` attribute to the email.
15+
- Using the `autofocus` attribute it will focus the cursor in that particular input when the website loads. Apply the `autofocus` attribute to the email.
1616

0 commit comments

Comments
 (0)