File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
exercises/01.1-The-Style-Tag Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 22# ` 01.1 ` Etiqueta Style
33
44Si quieres añadir estilos a tu sitio web escribiendo CSS siempre debes hacerlo dentro de una etiqueta ` <style> ` .
5- Puedes tener cuantas etiquetas ` <style> ` quieras pero se recomienda solo tener una al principio del código de tu sitio web.
5+ Puedes tener cuantas etiquetas ` <style> ` quieras, pero se recomienda solo tener una al principio del código de tu sitio web.
66
77``` HTML
88<style >
9- /* los estilos CSS del sitio web van aquí */
9+ /* Los estilos CSS del sitio web van aquí */
1010 </style >
1111```
1212
13- ## 📝 Instruccciones :
13+ ## 📝 Instrucciones :
1414
15151 . Añade una etiqueta ` <style> ` en tu sitio web y usando CSS selecciona todas las etiquetas ` <p> ` para que su texto sea de color azul (` blue ` ).
1616
Original file line number Diff line number Diff line change @@ -4,18 +4,18 @@ tutorial: "https://www.youtube.com/watch?v=C5sOchuD2d4"
44
55# ` 01.1 ` The Style Tag
66
7- If you want to add styles into a website by writing CSS you have to always add it within a ` <style> ` tag.
8- You can have as many style tags as you want but it is recomended to have only one at the beginning of your website code.
7+ If you want to add styles into a website by writing CSS you always have to add it within a ` <style> ` tag.
8+ You can have as many style tags as you want, but it is recommended to have only one at the beginning of your website code.
99
1010``` HTML
1111<style >
12- /* the website CSS Styles go here */
12+ /* The website CSS Styles go here */
1313 </style >
1414```
1515
1616## 📝 Instructions
1717
18- 1 . Add a ` <style> ` tag into your website and using CSS select all ` <p> ` tags to turn their text into ` blue ` color .
18+ 1 . Add a ` <style> ` tag to your website and using CSS select all ` <p> ` tags to turn their text to color ` blue ` .
1919
2020## 💻 Preview
2121
Original file line number Diff line number Diff line change 1- <!-- add a style tag and select the p tag and make it color blue -->
1+ <!-- Add a style tag, then select the p tag and make it color blue -->
22< style >
3- /* the website CSS Styles go here */
3+ /* The website CSS Styles go here */
44 p {
55 color : blue;
66 }
77</ style >
88< p >
99 Coding is a basic literacy in the digital age, and it is important for kids to understand and be able to work with and understand the technology
1010 around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity,
11- math,writing, and confidence.
12- </ p >
11+ math, writing, and confidence.
12+ </ p >
You can’t perform that action at this time.
0 commit comments