Skip to content

Commit 0194fd6

Browse files
Merge pull request 4GeeksAcademy#86 from josemoracard/jose1-css-tutorial-readme
fixed text and removed old gif in css tutorial readme
2 parents 6f278ed + f7d7fef commit 0194fd6

File tree

2 files changed

+16
-19
lines changed

2 files changed

+16
-19
lines changed

README.es.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
## En este tutorial aprenderás los siguientes conceptos:
1919

20-
1. Usar cómo aplicar CSS a su sitio web de 3 maneras diferentes: en línea, agrupándolos dentro de una etiqueta `<style>` o usando una hoja de estilo externa `<link>`.
20+
1. Cómo aplicar CSS a su sitio web de 3 maneras diferentes: en línea, agrupándolos dentro de una etiqueta `<style>` o usando una hoja de estilos externa `<link>`.
2121

2222
2. Seleccionar elementos HTML de su sitio web para aplicar los estilos.
2323

@@ -33,7 +33,7 @@
3333
<ol>
3434
<li><a href="https://github.com/4GeeksAcademy/html-tutorial-exercises-course">Aprende HTML</a></li>
3535
<li><a href="https://github.com/4GeeksAcademy/html-forms-tutorial-exercises">Aprende Formularios HTML5 </a></li>
36-
<li><a href="https://github.com/4GeeksAcademy/css-tutorial-exercises-course">Aprende CSS</a>← 🔥 estás aquí</li>
36+
<li><a href="https://github.com/4GeeksAcademy/css-tutorial-exercises-course">Aprende CSS</a>← 🔥 Estás aquí</li>
3737
<li><a href="https://github.com/4GeeksAcademy/css-layouts-tutorial-exercises">Aprende CSS Layouts</a></li>
3838
<li><a href="https://github.com/4GeeksAcademy/bootstrap-exercises-tutorial">Aprende Bootstrap</a></li>
3939
</ol>
@@ -48,7 +48,7 @@ Una completa selección de Ejercicios autograduados sobre CSS ¡para cualquier i
4848

4949
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 12+:
5050

51-
```
51+
```bash
5252
$ npm i learnpack -g
5353
$ learnpack plugins:install learnpack-html
5454
```
@@ -68,15 +68,11 @@ $ npm i jest@24.8.0 -g
6868
$ learnpack start
6969
```
7070

71-
<p align="center">
72-
<img src="https://github.com/4GeeksAcademy/html-forms-tutorial-exercises/blob/master/.learn/assets/animation.gif?raw=true">
73-
</p>
74-
75-
Nota: Los ejercicios slon autograduados pero 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 pueden frustrarte.
71+
Nota: Los ejercicios son autograduados, pero los tests son muy rígidos y estrictos, mi recomendación es que no prestes demasiada atención a los tests y los uses solo como una sugerencia o podrías frustrarte.
7672
<!-- endhide -->
7773
## ¿Cómo están organizados los ejercicios?
7874

79-
Cada ejercicio es una pequeña aplicación de react que contiene los siguientes archivos:
75+
Cada ejercicio es una pequeña aplicación de React que contiene los siguientes archivos:
8076

8177
1. **index.html:** representa el archivo de entrada para el ejercicio.
8278
2. **styles.css:** contiene los estilos y reglas de CSS

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
</tr>
1313
</table>
1414

15-
Hi! I'm [Alejandro Sanchez @alesanchezr](https://github.com/alesanchezr), really excited to have you here! 🎉 😂 Learning to code is hard, you need coaching! [DM me on twitter](https://twitter.com/alesanchezr) if you have any question.
15+
Hi! I'm [Alejandro Sanchez @alesanchezr](https://github.com/alesanchezr), really excited to have you here! 🎉 😂 Learning to code is hard, you need coaching! [DM me on twitter](https://twitter.com/alesanchezr) if you have any questions.
1616
<!-- endhide -->
1717

1818
## You'll be learning the following concepts:
1919

20-
1. Using how to apply CSS to your website in 3 different ways: Inline, by grouping them together inside a `<style>` tag or using an external stylesheet `<link>`.
20+
1. How to apply CSS to your website in 3 different ways: Inline, by grouping them together inside a `<style>` tag, or using an external stylesheet `<link>`.
2121

2222
2. Selecting HTML Elements from your website to apply the styles to.
2323

@@ -33,12 +33,12 @@ Hi! I'm [Alejandro Sanchez @alesanchezr](https://github.com/alesanchezr), really
3333
<ol>
3434
<li><a href="https://github.com/4GeeksAcademy/html-tutorial-exercises-course">Learn HTML</a></li>
3535
<li><a href="https://github.com/4GeeksAcademy/html-forms-tutorial-exercises">Learn HTML5 Forms</a></li>
36-
<li><a href="https://github.com/4GeeksAcademy/css-tutorial-exercises-course">Learn CSS</a>← 🔥 your are here now</li>
36+
<li><a href="https://github.com/4GeeksAcademy/css-tutorial-exercises-course">Learn CSS</a>← 🔥 You are here now</li>
3737
<li><a href="https://github.com/4GeeksAcademy/css-layouts-tutorial-exercises">Learn CSS Layouts</a></li>
3838
<li><a href="https://github.com/4GeeksAcademy/bootstrap-exercises-tutorial">Learn Bootstrap</a></li>
3939
</ol>
4040

41-
Complete selection of autograded CSS exercises, anyone interested in learning CSS!
41+
Complete selection of autograded CSS exercises, for anyone interested in learning CSS!
4242

4343

4444
## One click installation:
@@ -47,9 +47,9 @@ Complete selection of autograded CSS exercises, anyone interested in learning CS
4747

4848
## Manual installation
4949

50-
1) Install the learnpack package manager for education and the html plugin to compile an test html exercises:
50+
1) Install the learnpack package manager for education and the html plugin to compile and test html exercises:
5151

52-
```
52+
```bash
5353
$ npm i learnpack -g
5454
$ learnpack plugins:install learnpack-html
5555
```
@@ -60,20 +60,21 @@ $ learnpack plugins:install learnpack-html
6060
$ learnpack install css-tutorial-exercises-course
6161
```
6262

63-
Note: Once you finish downloading, you will need to `cd` into the exercises folder and you will find a "exercises" folder that contains all the exercises within.
63+
Note: Once you finish downloading, you will need to `cd` into the exercises folder which contains all the exercises.
6464

65-
3) Start the tutorial/exercises by running the following command at the same level were your learn.json file is:
65+
3) Start the tutorial/exercises by running the following command at the same level where your learn.json file is:
6666

6767
```sh
6868
$ npm i jest@24.8.0 -g
6969
$ learnpack start
7070
```
7171

72-
Note: The exercises have automatic grading but its very rigid and strict, my recomendation is to ignore the tests and use them only as a recomendation or you can get frustrated.
72+
Note: The exercises have automatic grading but it's very rigid and strict, my recommendation is to not take the tests too serious and use them only as a suggestion or you may get frustrated.
73+
7374
<!-- endhide -->
7475
## How are the exercises organized?
7576

76-
Each exercise is a small react application containing the following files:
77+
Each exercise is a small React application containing the following files:
7778

7879
1. **index.html:** all websites and exercises start from the index.html.
7980
2. **styles.css:** your CSS code goes here, some exercises will make you update this file.

0 commit comments

Comments
 (0)