From 7ceef56119bbaaabb208b212b892cf8c3e171daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Sucena=20Lopes?= <93825634+tomas-sucena@users.noreply.github.com> Date: Thu, 6 Jun 2024 12:56:40 +0100 Subject: [PATCH 1/2] fix: typo in HTML5 slides Fix typo in the Radio Button slide (slide 56) from the HTML5 slides. --- markdown/html5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/html5.md b/markdown/html5.md index 5773fcd..b04d841 100644 --- a/markdown/html5.md +++ b/markdown/html5.md @@ -1092,7 +1092,7 @@ How do you get to school?
# Radio Button -* A radio allows the selecting one form several choices. +* A radio allows selecting **one** from several choices. * If a radio button is **selected**, then its name/value pair is submitted to the server. * If a radio button is **not selected**, nothing is submitted. * If two radio buttons have the **same name**, then only one can be selected; they form a selection group. From cc91fa05c0bd0f9f44b7c99f7ce5cf5eb997f6f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Sucena=20Lopes?= <93825634+tomas-sucena@users.noreply.github.com> Date: Thu, 6 Jun 2024 12:58:13 +0100 Subject: [PATCH 2/2] fix: typo in HTML5 slides Fix typo in the Text Inputs slide (slide 51) of the HTML5 slides. --- markdown/html5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/html5.md b/markdown/html5.md index b04d841..bf4da0e 100644 --- a/markdown/html5.md +++ b/markdown/html5.md @@ -982,7 +982,7 @@ There are several different types of inputs just for normal text entry. * tel: input value is a telephone number * search: input value is used to perform a search * url: input value is an URL -* email: input value is used an e-mail +* email: input value is an e-mail address ] Some browsers may use slightly different controls for each type.