Skip to content

Commit 1133a59

Browse files
Merge pull request 4GeeksAcademy#56 from dsilva06/text-changes
changed #myTitle to .myTitle
2 parents 7e3b40f + d67022a commit 1133a59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exercises/10-Your-Own-Font/README.es.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ Después de vincular tu fuente, debes asignar la regla CSS `font-family` a lo qu
1414

1515
1. Enlaza cualquier fuente de google que desee en el sitio web.
1616

17-
2. Aplica esa `font-family` (familia de fuentes) específica a `#myTitle`.
17+
2. Aplica esa `font-family` (familia de fuentes) específica a `.myTitle`.
1818

exercises/10-Your-Own-Font/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ After your font is linked you need to assign the `font-family` CSS rule to whate
1414

1515
1. Link any google-font that you like into the website.
1616

17-
2. Apply that specific `font-family` to `#myTitle`.
17+
2. Apply that specific `font-family` to `.myTitle`.
1818

exercises/10-Your-Own-Font/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe("All the styles should be applied", function () {
1919
jest.resetModules();
2020
});
2121

22-
it("the font-family in the #myTitle should exists", function () {
22+
it("the font-family in the .myTitle should exists", function () {
2323
// get computed styles of any element you like
2424
let cssArray=document.styleSheets[0].cssRules;
2525
// console.log("%%% ", cssArray)

0 commit comments

Comments
 (0)