Skip to content

changed #myTitle to .myTitle #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/10-Your-Own-Font/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ Después de vincular tu fuente, debes asignar la regla CSS `font-family` a lo qu

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

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

2 changes: 1 addition & 1 deletion exercises/10-Your-Own-Font/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ After your font is linked you need to assign the `font-family` CSS rule to whate

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

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

2 changes: 1 addition & 1 deletion exercises/10-Your-Own-Font/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("All the styles should be applied", function () {
jest.resetModules();
});

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