You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercises/07-HTML-five-forms/README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@ HTML5 brings some more cool tricks to forms, here is a few:
4
4
5
5
- We are using placeholders to help the user understand how to fill each specific input.
6
6
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.
8
8
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.
10
10
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
12
12
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).
14
14
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.
0 commit comments