Skip to content

Commit 04e0afd

Browse files
Merge pull request #53 from ElviraQDP/readme.es
Readme.es
2 parents 9607e28 + bdbd801 commit 04e0afd

File tree

5 files changed

+104
-7
lines changed

5 files changed

+104
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
!bc.json
88
!learn.json
99
!README.md
10+
!README.es.md
1011

1112
!/exercises
1213
!/exercises/*

README.es.md

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# Tutorial de Ejercicios de HTML5 de 4Geeks Academy
2+
3+
<a href="https://www.4geeksacademy.co"><img height="280" align="right" src="https://github.com/learnpack/html-tutorial-exercises-course/blob/master/HTML-badge.png"></a>
4+
5+
6+
7+
Por [@alesanchezr](https://twitter.com/alesanchezr) y [otros colaboradores](https://github.com/4GeeksAcadem/html-tutorial-exercises-course/graphs/contributors) at [4Geeks Academy](https://4geeksacademy.co/)
8+
9+
<p>
10+
<img alt="last commit" src="https://img.shields.io/github/last-commit/4geeksacademy/javascript-arrays-exercises-tutorial" class="text-center" />
11+
<img alt="last commit" src="https://img.shields.io/badge/build_by-Developers-blue" class="text-center" />
12+
<img alt="last commit" src="https://img.shields.io/twitter/follow/4geeksacademy?style=social&logo=twitter" class="text-center" />
13+
</p>
14+
15+
¡Selección completa de ejercicios html autograduados para cualquier persona interesada en aprender HTML!
16+
17+
18+
¡Hola! Soy [Alejandro Sanchez @alesanchezr](https://github.com/alesanchezr), ¡muy emocionado de tenerte aquí! 🎉 😂 Aprender a codificar es difícil, ¡necesitas entrenamiento! [Envíame un mensaje privado en Twitter] (https://twitter.com/alesanchezr) si tienes alguna pregunta.
19+
20+
### Aprenderás los siguientes conceptos:
21+
22+
1. a familiarizarte con la mayoría de las etiquetas HTML más populares.
23+
24+
2. a usar las etiquetas/tags juntas para crear un sitio web HTML simple.
25+
26+
3. Vinculación de sitios web mediante anclajes/anchors con rutas relativas o absolutas.
27+
28+
4. La etiqueta HTML de audio y video.
29+
30+
#### Antes de empezar... otros tutoriales relacionados
31+
32+
<ol>
33+
<li><a href="https://github.com/4GeeksAcademy/html-tutorial-exercises-course">Aprende HTML</a>← Estás aquí</li>
34+
<li><a href="https://github.com/4GeeksAcademy/css-tutorial-exercises-course">Aprende CSS</a></li>
35+
<li><a href="https://github.com/4GeeksAcademy/bootstrap-exercises-tutorial">Aprende Bootstrap</a></li>
36+
</ol>
37+
38+
## Instalación en un clic
39+
40+
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io#https://github.com/4GeeksAcademy/html-tutorial-exercises-course.git)
41+
42+
## Instalación manual
43+
44+
1. Instala learnpack, el package manager para tutoriales de aprendizaje y el html compiler plugin para learnpack, asegúrate también de tener node.js 14+:
45+
46+
```
47+
$ npm i learnpack -g
48+
$ learnpack plugins:install learnpack-html
49+
```
50+
51+
2. Descarga estos ejercicios en particular usando learnpack y luego `cd` para entrar en la carpeta:
52+
53+
```
54+
$ learnpack download html-tutorial-exercises-course
55+
$ cd html-tutorial-exercises-course
56+
```
57+
58+
Nota: Una vez que termines de descargar, encontrarás una carpeta "exercises" que contiene todos los ejercicios.
59+
60+
3. Inicializa el tutorial/ejercicios ejecutando el siguiente comando en el mismo nivel donde se encuentra tu archivo bc.json:
61+
62+
```sh
63+
64+
$ learnpack start
65+
```
66+
67+
Nota: Estos ejercicios tienen calificación automática. Los tests son muy rígidos y estrictos, mi recomendación es que ignores los tests y los uses solo como una recomendación o puedes frustrarte.
68+
69+
<p align="center">
70+
<img src="https://raw.githubusercontent.com/4GeeksAcademy/react-exercises/master/preview.gif">
71+
</p>
72+
73+
## ¿Cómo están organizados los ejercicios?
74+
75+
Cada ejercicio es una pequeña aplicación de react que contiene los siguientes archivos:
76+
77+
1. **index.js:** representa el archivo de entrada para toda la aplicación.
78+
2. **README.md:** contiene las instrucciones de los ejercicios.
79+
3. **test.js:** no tienes que abrir este archivo, contiene el script del test para el ejercicio.
80+
81+
## Colaboradores
82+
83+
Gracias a estas personas maravillosas ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
84+
85+
1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribución: (codificador) 💻 (idea) 🤔, (build-tests) ⚠️ , (pull-request-review) 🤓 (tutorial de compilación) ✅ (documentación) 📖
86+
87+
2. [David Hay (haydavid23)](https://github.com/haydavid23), contribución: (tests) ⚠️
88+
89+
3. [Daniel Machota (@d4rkm0nst3r)](https://github.com/d4rkm0nst3r), contribución: (build-tutorial) ✅, Traducción 🌍
90+
91+
Este proyecto sigue la especificación [all-contributors](https://github.com/kentcdodds/all-contributors). ¡Todas las contribuciones son bienvenidas!

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ Hi! I'm [Alejandro Sanchez @alesanchezr](https://github.com/alesanchezr), really
1616
<!-- endhide -->
1717

1818
1. Get familiar with most of the most popular HTML Tags.
19+
1920
2. Using the tags together to create a simple HTML Website.
21+
2022
3. Linking websites together using Anchors with Relative or Absolute paths.
23+
2124
4. The HTML audio and video tag.
2225

23-
<!-- hide -->
24-
<h4>Before we start... other related tutorials</h4>
26+
#### Before we start... other related tutorials
27+
2528
<ol>
2629
<li><a href="https://github.com/4GeeksAcademy/html-tutorial-exercises-course">Learn HTML</a>← your are here now</li>
2730
<li><a href="https://github.com/4GeeksAcademy/css-tutorial-exercises-course">Learn CSS</a></li>
@@ -39,7 +42,7 @@ This exercises are configured to [easily open in gitpod by clicking here](https:
3942

4043
### B) Manual installation
4144

42-
1. Install learnpack, the package manager for learning tutorials and the html compiler plugin for learnpack, make sure you also have node.js 12+:
45+
1. Install learnpack, the package manager for learning tutorials and the html compiler plugin for learnpack, make sure you also have node.js 14+:
4346

4447
```
4548
$ npm i learnpack -g
@@ -62,7 +65,7 @@ $ npm i [email protected] -g
6265
$ learnpack start
6366
```
6467

65-
Node: The xercises have automatic grading but its very rigid and string, my recomendation is to ignore the tests and use them only as a recomendation or you can get frustrated.
68+
Note: The exercises have automatic grading but its very rigid and string, my recomendation is to ignore the tests and use them only as a recomendation or you can get frustrated.
6669

6770
<p align="center">
6871
<img src="https://raw.githubusercontent.com/4GeeksAcademy/react-exercises/master/preview.gif">
@@ -80,8 +83,10 @@ Each exercise is a small react application containing the following files:
8083

8184
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
8285

83-
1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribution: (coder) :computer: (idea) 🤔, (build-tests) :warning:, (pull-request-review) :eyes: (build-tutorial) :white_check_mark: (documentation) :book:
86+
1. [Alejandro Sanchez (alesanchezr)](https://github.com/alesanchezr), contribution: (coder) :computer: (idea) 🤔, (build-tests) :warning:, (pull-request-review) :eyes: (build-tutorial) ✅ (documentation) 📖
87+
8488
2. [David Hay (haydavid23)](https://github.com/haydavid23), contribution: (test) ⚠️
89+
8590
3. [Daniel Machota (@d4rkm0nst3r)](https://github.com/d4rkm0nst3r), contribution: (build-tutorial) ✅, Translation 🌍
8691

8792
This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind are welcome!

exercises/08-relative-vs-absolute-path/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Si usas **rutas relativas** , tienes que asumir que la parte inicial de la ruta
4343

4444
+ Si construyes (`build`) el ejercicio, abre el sitio web y haz un clic derecho en la imagen, el menú contextual mostrará una opción 'Copiar dirección de imagen' que copiará tu URL absoluta en tu portapapeles.
4545

46-
+ Aquí hay un video que explica [la diferencia entre rutas relativas y absolutas](https://www.youtube.com/watch?v=ephId3mYu9o)
46+
+ Aquí hay un video que explica la diferencia entre rutas relativas y absolutas [https://www.youtube.com/watch?v=ephId3mYu9o](https://www.youtube.com/watch?v=ephId3mYu9o)

exercises/08-relative-vs-absolute-path/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ If you use **relative paths**, you have to assume that the initial part of the p
4444

4545
+ If you build the exercise, open the website, and right click on the image, the context menu will show an option 'Copy Image Address' that will copy it's absolute URL into your clipboard.
4646

47-
+ Here is a video explaining [the difference between relative and absolute paths](https://www.youtube.com/watch?v=ephId3mYu9o)
47+
+ Here is a video explaining the difference between relative and absolute paths [https://www.youtube.com/watch?v=ephId3mYu9o](https://www.youtube.com/watch?v=ephId3mYu9o)

0 commit comments

Comments
 (0)