You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
¡Hola! Soy [Alejandro Sanchez @alesanchezr](https://github.com/alesanchezr), ¡muy emocionado de tenerte aquí! 🎉 😂 Aprender a programar es difícil, ¡necesitas entrenamiento! [Envíame un DM en Twitter] (https://twitter.com/alesanchezr) si tienes alguna pregunta.
15
+
16
+
## En este tutorial aprenderás los siguientes conceptos:
17
+
18
+
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>`.
19
+
20
+
2. Seleccionar elementos HTML de su sitio web para aplicar los estilos.
Una completa selección de Ejercicios autograduados sobre CSS ¡para cualquier interesado en aprender CSS!
40
+
41
+
## Instalación en un clic
42
+
43
+
[](https://github.com/4GeeksAcademy/css-tutorial-exercises-course)
44
+
45
+
## Instalación manual
46
+
47
+
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+:
48
+
49
+
```
50
+
$ npm i learnpack -g
51
+
$ learnpack plugins:install learnpack-html
52
+
```
53
+
54
+
2. Descarga estos ejercicios en particular usando learnpack y luego `cd` para entrar en la carpeta:
55
+
56
+
```bash
57
+
$ learnpack install css-tutorial-exercises-course
58
+
```
59
+
60
+
Nota: Una vez que termines de descargar, encontrarás una carpeta "exercises" que contiene todos los ejercicios.
61
+
62
+
3. Inicializa el tutorial/ejercicios ejecutando el siguiente comando en el mismo nivel donde se encuentra tu archivo bc.json:
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.
74
+
75
+
## ¿Cómo están organizados los ejercicios?
76
+
77
+
Cada ejercicio es una pequeña aplicación de react que contiene los siguientes archivos:
78
+
79
+
1.**index.js:** representa el archivo de entrada para toda la aplicación.
80
+
2.**README.md:** contiene las instrucciones de los ejercicios.
81
+
3.**test.js:** no tienes que abrir este archivo, contiene el script del test para el ejercicio.
82
+
83
+
## Colaboradores
84
+
85
+
Gracias a estas personas maravillosas ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
Copy file name to clipboardExpand all lines: README.md
+23-14Lines changed: 23 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -11,25 +11,35 @@
11
11
</tr>
12
12
</table>
13
13
14
-
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. You'll be learning the following concepts:
14
+
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
+
16
+
## You'll be learning the following concepts:
17
+
18
+
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 exeternal stylesheet `<link>`.
15
19
16
-
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 exeternal stylesheet `<link>`,
17
20
2. Selecting HTML Elements from your website to apply the styles to.
21
+
18
22
3. Apply CSS Rules (styles) to those elements.
23
+
19
24
4. Use the most popular CSS Rules.
25
+
20
26
5. Learn the most popular CSS Tricks.
21
27
22
-
<h4>Before we start... other related tutorials</h4>
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.
61
69
62
70
## How are the exercises organized?
63
71
@@ -71,9 +79,10 @@ Each exercise is a small react application containing the following files:
71
79
72
80
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
0 commit comments