Skip to content

Commit 3f449df

Browse files
committed
added video tutorials in english
1 parent 40c9510 commit 3f449df

File tree

9 files changed

+38
-5
lines changed

9 files changed

+38
-5
lines changed

exercises/01-welcome/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
intro: "https://www.youtube.com/watch?v=83HxtkBq7Yc"
3+
---
4+
15

26
# `01` Welcome to the world of HTML 😆 !!
37

exercises/02-hello-world/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=ytIzazz6q5Y"
3+
---
4+
15
# `02` Hello World
26

37
## 📝 Instructions:

exercises/03-Type-Radio/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=I-pvy3crrA4"
3+
---
4+
15
# `03` Type Radio
26

37
The `input type=radio` is used when the user is not allowed to pick more than one option.
@@ -6,7 +10,7 @@ To bind different radios into the same group of options you need to assign them
610

711
## 📝 Instructions:
812

9-
1. Create 2 input `type=radio` to pick the gender values: Male or Female.
13+
1. Create 2 input `type=radio` to pick the sex values: Male or Female.
1014

1115
2. Create another 2 input `type=radio` to pick sexual orientation: Heterosexual or LGBTI.
1216

exercises/03-Type-Radio/solution.hide.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
<form>
1010
<!-- your code here -->
1111
<label for="Male">Male</label>
12-
<input type="radio" name="gender" value="Male" />
12+
<input type="radio" name="sex" value="Male" />
1313
<label for="Female">Female</label>
14-
<input type="radio" name="gender" value="Female" />
14+
<input type="radio" name="sex" value="Female" />
1515

1616
<label for="Heterosexual">Heterosexual</label>
17-
<input type="radio" name="sex" value="Heterosexual" />
17+
<input type="radio" name="orientation" value="Heterosexual" />
1818
<label for="LGBTI">LGBTI</label>
19-
<input type="radio" name="sex" value="LGBTI" />
19+
<input type="radio" name="orientation" value="LGBTI" />
2020
</form>
2121
</body>
2222
</html>

exercises/04-fieldsets-labels-and-styles/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=G8RtzrhoFfU"
3+
---
4+
15
# `04` Fieldsets, labels and styles
26

37
Styling a form is boring and tedious, but if you use certain tags, your life can be easier.

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=7yLgHC3my3Y"
3+
---
4+
15
# `05` HTML Form
26

37
HTML5 brings some more cool tricks to forms, here is a few:

exercises/06-Replicate-simple-form/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=k4-CNHgO_1s"
3+
---
4+
15
# `06` Replicate Simple Form
26

37
## 📝 Instructions:

exercises/07-Style-without-id-class/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=BBBPCxXDQsw"
3+
---
4+
5+
16
# `07` Style without ID or Class
27

38
Here you have a beautiful signup form, you can read the code to understand how it was made.

exercises/08-Spectacular-login-form/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=x6gwC16Kch8"
3+
---
4+
15
# `08` Spectacular login form
26

37
## 📝 Instructions:

0 commit comments

Comments
 (0)