├── exercises ├── 01.1-like-word │ ├── index.html │ ├── solution.hide.html │ ├── README.es.md │ ├── README.md │ └── tests.js ├── 02-website-structure │ ├── index.html │ ├── solution.hide.html │ ├── README.md │ ├── README.es.md │ └── tests.js ├── 03-hello-without-head │ ├── index.html │ ├── solution.hide.html │ ├── README.md │ ├── README.es.md │ └── tests.js ├── 01-hello-world │ ├── index.html │ ├── solution.hide.html │ ├── README.md │ ├── README.es.md │ └── tests.js ├── 15-iframe │ ├── index.html │ ├── solution.hide.html │ ├── README.md │ ├── README.es.md │ └── tests.js ├── 10-replicate-html │ ├── index.html │ ├── solution.hide.html │ ├── README.md │ ├── README.es.md │ └── tests.js ├── 11-nested-tags │ ├── index.html │ ├── solution.hide.html │ ├── README.es.md │ ├── README.md │ └── tests.js ├── 12-my-first-table │ ├── index.html │ ├── solution.hide.html │ ├── tests.js │ ├── README.md │ └── README.es.md ├── 13-image-with-text │ ├── index.html │ ├── solution.hide.html │ ├── README.md │ ├── README.es.md │ └── tests.js ├── 05-create-anchors │ ├── index.html │ ├── solution.hide.html │ ├── tests.js │ ├── README.es.md │ └── README.md ├── 14-video-tag │ ├── index.html │ ├── solution.hide.html │ ├── README.md │ ├── README.es.md │ └── tests.js ├── 04-list-of-reasons │ ├── index.html │ ├── solution.hide.html │ ├── tests.js │ ├── README.md │ └── README.es.md ├── 06-new-window │ ├── index.html │ ├── solution.hide.html │ ├── README.es.md │ ├── README.md │ └── tests.js ├── 09-formatting-Text │ ├── index.html │ ├── solution.hide.html │ ├── tests.js │ ├── README.md │ └── README.es.md ├── 08-relative-vs-absolute-path │ ├── index.html │ ├── solution.hide.html │ ├── tests.js │ ├── README.md │ └── README.es.md ├── 07-same-page │ ├── index.html │ ├── solution.hide.html │ ├── tests.js │ ├── README.es.md │ └── README.md └── 00-welcome │ ├── README.md │ └── README.es.md ├── preview.png ├── HTML-badge.png ├── .learn └── assets │ ├── build.png │ ├── logo.ico │ ├── preview-01.1.png │ ├── 01.2-Like-Word.png │ ├── 11-nested-tags-1.png │ ├── 11-nested-tags-2.png │ ├── 11-nested-tags-3.png │ ├── 04-list-of-reasons.png │ ├── 05-create-anchors.png │ ├── 09-formating-text.png │ ├── 10-replicate-html.png │ ├── 12-my-first-table.png │ ├── 02-website-structure.png │ ├── 03-hello-without-head.png │ ├── 12-my-first-table-0.png │ ├── 13-images-with-text-2.png │ ├── 13-images-with-text.jpg │ ├── absolute-path-vs-relative-path.png │ └── open-in-gitpod.svg ├── .gitpod.dockerfile ├── .vscode └── settings.json ├── .gitignore ├── .gitpod.yml ├── LICENSE.md ├── .github └── workflows │ └── learnpack-audit.yml ├── .devcontainer └── devcontainer.json ├── learn.json ├── README.md └── README.es.md /exercises/01.1-like-word/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /exercises/02-website-structure/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /exercises/03-hello-without-head/index.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/preview.png -------------------------------------------------------------------------------- /HTML-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/HTML-badge.png -------------------------------------------------------------------------------- /.learn/assets/build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/build.png -------------------------------------------------------------------------------- /.learn/assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/logo.ico -------------------------------------------------------------------------------- /exercises/01.1-like-word/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 |

HTML tags are similar to MS Word elements

-------------------------------------------------------------------------------- /exercises/01-hello-world/index.html: -------------------------------------------------------------------------------- 1 | 2 |

Hello! I am a P tag, normally used for paragraphs

3 | -------------------------------------------------------------------------------- /.learn/assets/preview-01.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/preview-01.1.png -------------------------------------------------------------------------------- /.learn/assets/01.2-Like-Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/01.2-Like-Word.png -------------------------------------------------------------------------------- /.learn/assets/11-nested-tags-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/11-nested-tags-1.png -------------------------------------------------------------------------------- /.learn/assets/11-nested-tags-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/11-nested-tags-2.png -------------------------------------------------------------------------------- /.learn/assets/11-nested-tags-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/11-nested-tags-3.png -------------------------------------------------------------------------------- /.learn/assets/04-list-of-reasons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/04-list-of-reasons.png -------------------------------------------------------------------------------- /.learn/assets/05-create-anchors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/05-create-anchors.png -------------------------------------------------------------------------------- /.learn/assets/09-formating-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/09-formating-text.png -------------------------------------------------------------------------------- /.learn/assets/10-replicate-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/10-replicate-html.png -------------------------------------------------------------------------------- /.learn/assets/12-my-first-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/12-my-first-table.png -------------------------------------------------------------------------------- /.learn/assets/02-website-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/02-website-structure.png -------------------------------------------------------------------------------- /.learn/assets/03-hello-without-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/03-hello-without-head.png -------------------------------------------------------------------------------- /.learn/assets/12-my-first-table-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/12-my-first-table-0.png -------------------------------------------------------------------------------- /.learn/assets/13-images-with-text-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/13-images-with-text-2.png -------------------------------------------------------------------------------- /.learn/assets/13-images-with-text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/13-images-with-text.jpg -------------------------------------------------------------------------------- /exercises/01-hello-world/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | Hello, I am a text 3 | Hello, I am also a text but in bold 4 | -------------------------------------------------------------------------------- /.learn/assets/absolute-path-vs-relative-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4GeeksAcademy/html-tutorial-exercises-course/HEAD/.learn/assets/absolute-path-vs-relative-path.png -------------------------------------------------------------------------------- /exercises/03-hello-without-head/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

My Name

6 | 7 | -------------------------------------------------------------------------------- /exercises/15-iframe/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/10-replicate-html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/11-nested-tags/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/12-my-first-table/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/13-image-with-text/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/05-create-anchors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/14-video-tag/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gitpod.dockerfile: -------------------------------------------------------------------------------- 1 | FROM gitpod/workspace-full:latest 2 | 3 | USER gitpod 4 | 5 | RUN npm i jest@29.7.0 jest-environment-jsdom@29.7.0 -g 6 | RUN npm i @learnpack/learnpack@2.1.47 -g && learnpack plugins:install @learnpack/html@1.1.7 7 | -------------------------------------------------------------------------------- /exercises/02-website-structure/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hello World 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/04-list-of-reasons/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This title shows on the browser tab 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.autoSave": "afterDelay", 3 | "files.autoSaveDelay": 700, 4 | "editor.minimap.enabled": false, 5 | "workbench.editorAssociations": { 6 | "*.md": "vscode.markdown.preview.editor" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /exercises/06-new-window/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This title shows on the browser tab 5 | 6 | 7 | Click me to search on google 8 | 9 | 10 | -------------------------------------------------------------------------------- /exercises/05-create-anchors/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | Click me to seach on google 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/06-new-window/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This title shows on the browser tab 5 | 6 | 7 | Click me to search on google 8 | 9 | 10 | -------------------------------------------------------------------------------- /exercises/15-iframe/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything 2 | /* 3 | 4 | !.gitignore 5 | !.gitpod.yml 6 | !.gitpod.Dockerfile 7 | !bc.json 8 | !learn.json 9 | !README.md 10 | !README.es.md 11 | !.vscode 12 | 13 | !/exercises 14 | !/exercises/* 15 | 16 | !/.learn 17 | /.learn/** 18 | !/.learn/resets 19 | !/.learn/resets/** 20 | !/.learn/assets 21 | !/.learn/assets/** 22 | .DS_Store -------------------------------------------------------------------------------- /exercises/09-formatting-Text/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /exercises/08-relative-vs-absolute-path/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Relative vs Absolute Path 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/08-relative-vs-absolute-path/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Relative vs Absolute Path 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /exercises/14-video-tag/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /exercises/04-list-of-reasons/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | This title shows on the browser tab 5 | 6 | 7 | 8 |
    9 |
  1. Are In-Demand
  2. 10 |
  3. Earn a Great Living
  4. 11 |
  5. Have Diverse Opportunities
  6. 12 |
  7. Get to Be Creative
  8. 13 |
  9. Have Flexibility
  10. 14 |
  11. The job outlook is strong
  12. 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | image: 2 | file: .gitpod.dockerfile 3 | 4 | ports: 5 | - port: 3000 6 | onOpen: ignore 7 | 8 | vscode: 9 | extensions: 10 | - learn-pack.learnpack-vscode 11 | 12 | github: 13 | prebuilds: 14 | # enable for the master/default branch (defaults to true) 15 | master: true 16 | # enable for pull requests coming from this repo (defaults to true) 17 | pullRequests: false 18 | # add a "Review in Gitpod" button as a comment to pull requests (defaults to true) 19 | addComment: false 20 | -------------------------------------------------------------------------------- /exercises/08-relative-vs-absolute-path/tests.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | const html = fs.readFileSync(path.resolve(__dirname, './index.html'), 'utf8'); 4 | const configFile = fs.readFileSync(path.resolve('./.learn', './config.json')); 5 | document.documentElement.innerHTML = html.toString(); 6 | 7 | jest.dontMock('fs'); 8 | 9 | it('The absolute path to the image should be the correct one', function () { 10 | let img = document.querySelector('img'); 11 | expect(img).toBeTruthy(); 12 | 13 | let config = JSON.parse(configFile); 14 | expect(img.src).toBe(`${config.config.publicUrl}/.learn/assets/absolute-path-vs-relative-path.png`) 15 | }) 16 | -------------------------------------------------------------------------------- /exercises/15-iframe/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | tutorial: "https://www.youtube.com/watch?v=xLXYnVKaJL8" 3 | --- 4 | 5 | # `15` Iframe 6 | 7 | The ` 15 | ``` 16 | 17 | > Note: Watching the video won't hurt you 😉 18 | 19 | -------------------------------------------------------------------------------- /exercises/15-iframe/README.es.md: -------------------------------------------------------------------------------- 1 | --- 2 | tutorial: "https://www.youtube.com/watch?v=2PqOfB4nCeU" 3 | --- 4 | 5 | # `15` Iframe 6 | 7 | ¡El tag ` 16 | ``` 17 | 18 | > Nota: Ver el video no te hará daño 😉 19 | 20 | -------------------------------------------------------------------------------- /exercises/03-hello-without-head/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | tutorial: "https://www.youtube.com/watch?v=JsnzmuQ90_Q" 3 | --- 4 | 5 | # `03` Hello without Head 6 | 7 | In the last exercise you had to add all the HTML basic structure of a website. 8 | 9 | Do the same for this exercise, but don't include the `` tag. 10 | 11 | ## 📝 Instructions: 12 | 13 | 1. Add into the `` an `

` heading with your name on it. 14 | 15 | ## 💻 Expected result: 16 | 17 | ![Link url](../../.learn/assets/03-hello-without-head.png?raw=true) 18 | 19 | ## 💡 Hint: 20 | 21 | + The structure should look something like this: 22 | 23 | ```md 24 | 25 | 26 | 27 |

28 | 29 | 30 | ``` 31 | -------------------------------------------------------------------------------- /exercises/03-hello-without-head/README.es.md: -------------------------------------------------------------------------------- 1 | --- 2 | tutorial: "https://www.youtube.com/watch?v=oFswWx9ba14" 3 | --- 4 | 5 | # `03` Hello without Head 6 | 7 | En el último ejercicio tuviste que agregar toda la estructura básica HTML de un sitio web. 8 | 9 | Haz lo mismo en este ejercicio, pero no incluyas la etiqueta ``. 10 | 11 | ## 📝 Instrucciones: 12 | 13 | 1. Agrega al `` un título `

` con tu nombre. 14 | 15 | ## 💻 Resultado esperado: 16 | 17 | ![Link url](../../.learn/assets/03-hello-without-head.png?raw=true) 18 | 19 | ## 💡 Pista: 20 | 21 | + La estructura debería de verse algo así: 22 | 23 | ```md 24 | 25 | 26 | 27 |

28 | 29 | 30 | ``` 31 | -------------------------------------------------------------------------------- /exercises/11-nested-tags/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 |

Hello world. Italic word.

11 | 12 | 13 |

Hello world. Bold word.

14 | 15 | 16 | 17 |

Hello

18 |

Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis laboriosam quia adipisci. Hic tenetur fuga aliquam velit est pariatur tempore quibusdam ex quas a ipsum, illo aperiam blanditiis molestias voluptatibus.

19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /exercises/12-my-first-table/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
NameLast NamePhone Number
JustinPriveto+(346)737-5829
JacobPrieto+(345)234-2323
JamesMc Dinzk+(234)455-3434
34 | 35 | 36 | -------------------------------------------------------------------------------- /exercises/05-create-anchors/tests.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | const html = fs.readFileSync(path.resolve(__dirname, './index.html'), 'utf8'); 4 | document.documentElement.innerHTML = html.toString(); 5 | 6 | jest.dontMock('fs'); 7 | 8 | it('You should create an tag inside the tag.', function () { 9 | let body = document.querySelector("body"); 10 | expect(body).toBeTruthy(); 11 | 12 | let a = body.querySelector("a"); 13 | expect(a).toBeTruthy(); 14 | }) 15 | 16 | it('The tag should have google\'s link as the "href".', function () { 17 | let body = document.querySelector("body"); 18 | expect(body).toBeTruthy(); 19 | 20 | let a = body.querySelector("a"); 21 | expect(a).toBeTruthy(); 22 | 23 | expect(a.href).toContain("https://google.com"); 24 | }) -------------------------------------------------------------------------------- /exercises/10-replicate-html/solution.hide.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 4Geeks Academy 5 | 6 | 7 | 8 |

The learning essay

9 |

3 signals you know you are learning

10 |

Here are the 3 most common signs that shows you are learning

11 |
    12 |
  1. You are able to complete the exercises by yourself.
  2. 13 |
  3. You understand what the teacher is talking about.
  4. 14 |
  5. You are able to have conversations about the topic.
  6. 15 |
16 |

3 reasons you love what you are learning

17 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /exercises/04-list-of-reasons/tests.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | const html = fs.readFileSync(path.resolve(__dirname, './index.html'), 'utf8'); 4 | document.documentElement.innerHTML = html.toString(); 5 | 6 | jest.dontMock('fs'); 7 | 8 | it('You should create an
    tag inside the tag.', function () { 9 | let body = document.querySelector("body"); 10 | expect(body).toBeTruthy(); 11 | 12 | let ol = body.querySelector("ol") 13 | expect(ol).toBeTruthy(); 14 | }) 15 | 16 | it('The
      tag should have 6
    1. inside.', function () { 17 | let body = document.querySelector("body"); 18 | expect(body).toBeTruthy(); 19 | 20 | let ol = body.querySelector("ol"); 21 | expect(ol).toBeTruthy(); 22 | 23 | let lis = ol.querySelectorAll('li'); 24 | expect(lis.length).toBe(6); 25 | }) 26 | -------------------------------------------------------------------------------- /exercises/01-hello-world/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | tutorial: "https://www.youtube.com/watch?v=979yVLquF9Y" 3 | --- 4 | 5 | # `01` Hello World 6 | 7 | HTML is a markup language, meaning that everything you type must be wrapped in opening and closing ``, like this: 8 | 9 | ```html 10 | Hello, I am a text 11 | Hello, I am also a text but in bold 12 | ``` 13 | 14 | ## 📝 Instructions: 15 | 16 | 1. Please **remove** the current website content, **add** the above tags to your website HTML and press "**run**" to see the results. 17 | 18 | 19 | ## 💻 Expected Result: 20 | 21 | Your final website should be something like this: 22 | 23 | ![Preview for 01.1 HTML Exercises](../../.learn/assets/preview-01.1.png?raw=true) 24 | 25 | ## 💡 Hint: 26 | 27 | + You only have to remove what the file already has and paste the code from the instructions. 28 | -------------------------------------------------------------------------------- /exercises/01.1-like-word/README.es.md: -------------------------------------------------------------------------------- 1 | --- 2 | tutorial: "https://www.youtube.com/watch?v=PFY7o_z8L2I" 3 | --- 4 | # `01.1` Like Word 5 | 6 | HTML fue creado inicialmente para publicar documentos, es por eso que sus `` (etiquetas) son similares a los elementos típicos que ves en un documento: 7 | 8 | | Nombre Etiqueta | Uso | 9 | | -------- | -------- | 10 | | `

      ` | Para agregar párrafos | 11 | | `` | Texto en negrita | 12 | | `

      ` | Títulos con mayor importancia (más grandes) | 13 | | `

      ` | Subtítulos (más pequeños)| 14 | | `` | Links o enlaces (anchors) | 15 | | `