Skip to content

Commit 82a4866

Browse files
authored
Merge pull request #59 from josemoracard/jose1
borrar ejercicio get vs post, reoganizar demas ejercicios, poner hints
2 parents d838de4 + 327c8dd commit 82a4866

File tree

35 files changed

+45
-139
lines changed

35 files changed

+45
-139
lines changed

README.es.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ Los formularios son tan importantes en el mundo de HTML, CSS y JavaScript que de
2121

2222
3. Validaciones de formulario.
2323

24-
4. GET vs POST.
25-
26-
5. Dar estilos a un formulario.
24+
4. Dar estilos a un formulario.
2725

2826
<!-- hide -->
2927
#### Antes de empezar... hay otros tutoriales

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ Forms are so important in the world of HTML, CSS and JavaScript that I decided t
2222

2323
3. Form preventive validations.
2424

25-
4. GET vs POST.
26-
27-
5. Styling a form.
25+
4. Styling a form.
2826

2927
<!-- hide -->
3028
#### Before we start... other related tutorials

exercises/01-welcome/README.es.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ Estos ejercicios son para cualquier persona interesada en dominar los formulario
1111

1212
3. Validaciones de formulario
1313

14-
4. GET vs POST
15-
16-
5. Dar estilos a un formulario
14+
4. Dar estilos a un formulario
1715

1816
## ➡️ Incremental & ✔️ Autoevaluado
1917

exercises/01-welcome/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ These exercises are for anyone interested in mastering HTML Forms, we will go ov
1111

1212
3. Form preventive validations
1313

14-
4. GET vs POST
15-
16-
5. Styling a form
14+
4. Styling a form
1715

1816
## ➡️ Incremental & ✔️ Autograded
1917

exercises/04-Replicate-simple-form/README.es.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

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

Lines changed: 0 additions & 7 deletions
This file was deleted.

exercises/06-fieldsets-labels-and-styles/README.es.md renamed to exercises/04-fieldsets-labels-and-styles/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `06` Fieldsets, labels and styles
1+
# `04` Fieldsets, labels and styles
22

33
Darle estilo a un formulario es aburrido y tedioso, pero si usas ciertas etiquetas, tu vida puede ser más fácil.
44

exercises/06-fieldsets-labels-and-styles/README.md renamed to exercises/04-fieldsets-labels-and-styles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `06` Fieldsets, labels and styles
1+
# `04` Fieldsets, labels and styles
22

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

exercises/05-GET-vs-POST/README.es.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

exercises/05-GET-vs-POST/README.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

exercises/05-GET-vs-POST/index.html

Lines changed: 0 additions & 26 deletions
This file was deleted.

exercises/05-GET-vs-POST/solution.hide.html

Lines changed: 0 additions & 29 deletions
This file was deleted.

exercises/05-GET-vs-POST/style.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

exercises/07-HTML-five-forms/README.es.md renamed to exercises/05-HTML-five-forms/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `07` HTML Form
1+
# `05` HTML Form
22

33
HTML5 trae algunos trucos muy interesantes para los formularios, aquí hay algunos:
44

exercises/07-HTML-five-forms/README.md renamed to exercises/05-HTML-five-forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `07` HTML Form
1+
# `05` HTML Form
22

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# `06` Replicate Simple Form
2+
3+
## 📝 Instrucciones:
4+
5+
1. Usando una tabla, replica exactamente este mismo formulario:
6+
7+
![Formulario HTML](../../.learn/assets/5xKY0rI.png?raw=true)
8+
9+
## 💡 Pistas:
10+
11+
+ Usa las etiquetas `<style>` que están dentro de `<head>` para escribir tu CSS.
12+
13+
+ Investiga sobre tablas básicas de HTML y sus atributos para obtener el resultado deseado.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# `06` Replicate Simple Form
2+
3+
## 📝 Instructions:
4+
5+
1. Using a table, replicate this exact same form:
6+
7+
![html form](../../.learn/assets/5xKY0rI.png?raw=true)
8+
9+
## 💡 Hints:
10+
11+
+ Use the `<style>` tags inside the `<head>` tags to write your CSS.
12+
13+
+ Search about basic HTML tables and its attributes to reach the desired result.

exercises/04-Replicate-simple-form/index.html renamed to exercises/06-Replicate-simple-form/index.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width">
77
<title>4Geeks Academy</title>
8+
9+
<style>
10+
/* your code here */
11+
12+
</style>
813
</head>
914

1015
<body>
1116
<form>
1217
<!-- your code here -->
18+
1319
</form>
1420
</body>
1521

16-
</html>
22+
</html>

exercises/08-Style-without-id-class/README.es.md renamed to exercises/07-Style-without-id-class/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `08` Style without ID or Class
1+
# `07` Style without ID or Class
22

33
Aquí tienes un hermoso formulario de inscripción, puedes leer el código para entender cómo se hizo.
44

exercises/08-Style-without-id-class/README.md renamed to exercises/07-Style-without-id-class/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `08` Style without ID or Class
1+
# `07` Style without ID or Class
22

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

exercises/09-Spectacular-login-form/README.es.md renamed to exercises/08-Spectacular-login-form/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `09` Spectacular login form
1+
# `08` Spectacular login form
22

33
## 📝 Instrucciones:
44

exercises/09-Spectacular-login-form/README.md renamed to exercises/08-Spectacular-login-form/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `09` Spectacular login form
1+
# `08` Spectacular login form
22

33
## 📝 Instructions:
44

0 commit comments

Comments
 (0)