From a6caa74d0d897bec73ce11169950078d2bf239d5 Mon Sep 17 00:00:00 2001
From: dsilva06
Date: Wed, 28 Sep 2022 16:57:20 +0000
Subject: [PATCH 1/3] deleted solution in index.html
---
.learn/resets/01.3-Your-Second-Style/index.html | 14 ++++++++++++++
exercises/01.3-Your-Second-Style/index.html | 3 ---
2 files changed, 14 insertions(+), 3 deletions(-)
create mode 100644 .learn/resets/01.3-Your-Second-Style/index.html
diff --git a/.learn/resets/01.3-Your-Second-Style/index.html b/.learn/resets/01.3-Your-Second-Style/index.html
new file mode 100644
index 00000000..03e672a3
--- /dev/null
+++ b/.learn/resets/01.3-Your-Second-Style/index.html
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ Hello! My background should be blue!
+
+
diff --git a/exercises/01.3-Your-Second-Style/index.html b/exercises/01.3-Your-Second-Style/index.html
index 03e672a3..998d973a 100644
--- a/exercises/01.3-Your-Second-Style/index.html
+++ b/exercises/01.3-Your-Second-Style/index.html
@@ -3,9 +3,6 @@
From 2819a9d8fb33875533866b42ed300ec04a17549c Mon Sep 17 00:00:00 2001
From: dsilva06
Date: Wed, 28 Sep 2022 16:57:48 +0000
Subject: [PATCH 2/3] deleted solution in index.html
---
.learn/resets/01.3-Your-Second-Style/index.html | 14 --------------
1 file changed, 14 deletions(-)
delete mode 100644 .learn/resets/01.3-Your-Second-Style/index.html
diff --git a/.learn/resets/01.3-Your-Second-Style/index.html b/.learn/resets/01.3-Your-Second-Style/index.html
deleted file mode 100644
index 03e672a3..00000000
--- a/.learn/resets/01.3-Your-Second-Style/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
- Hello! My background should be blue!
-
-
From 41e04edc2be2deebad3b6abdff135473b09176c0 Mon Sep 17 00:00:00 2001
From: dsilva06
Date: Wed, 28 Sep 2022 21:28:44 +0000
Subject: [PATCH 3/3] flexible results
---
exercises/10-Your-Own-Font/index.html | 2 --
exercises/10-Your-Own-Font/solution.hide.css | 2 +-
exercises/10-Your-Own-Font/solution.hide.html | 30 ++++++++++---------
exercises/10-Your-Own-Font/styles.css | 1 -
exercises/10-Your-Own-Font/tests.js | 2 +-
5 files changed, 18 insertions(+), 19 deletions(-)
diff --git a/exercises/10-Your-Own-Font/index.html b/exercises/10-Your-Own-Font/index.html
index 7ca11a24..b4005187 100644
--- a/exercises/10-Your-Own-Font/index.html
+++ b/exercises/10-Your-Own-Font/index.html
@@ -3,8 +3,6 @@
-
-
diff --git a/exercises/10-Your-Own-Font/solution.hide.css b/exercises/10-Your-Own-Font/solution.hide.css
index 371e026b..e36ebf08 100644
--- a/exercises/10-Your-Own-Font/solution.hide.css
+++ b/exercises/10-Your-Own-Font/solution.hide.css
@@ -1,4 +1,4 @@
.myTitle {
/*your code here*/
- font-family: 'Roboto'; /*Varies depending on the font you chose*/
+ font-family: "Roboto"; /*Varies depending on the font you chose*/
}
diff --git a/exercises/10-Your-Own-Font/solution.hide.html b/exercises/10-Your-Own-Font/solution.hide.html
index 32040ed7..d1547a63 100644
--- a/exercises/10-Your-Own-Font/solution.hide.html
+++ b/exercises/10-Your-Own-Font/solution.hide.html
@@ -1,17 +1,19 @@
-
-
-
-
-
-
+
+
+
+
+
+
+
- 10 Your Own Font
-
-
- My unique font
-
-
\ No newline at end of file
+ 10 Your Own Font
+
+
+ My unique font
+
+
diff --git a/exercises/10-Your-Own-Font/styles.css b/exercises/10-Your-Own-Font/styles.css
index a8694c16..0335a322 100644
--- a/exercises/10-Your-Own-Font/styles.css
+++ b/exercises/10-Your-Own-Font/styles.css
@@ -1,4 +1,3 @@
.myTitle {
/* Add your code below this line */
-
}
diff --git a/exercises/10-Your-Own-Font/tests.js b/exercises/10-Your-Own-Font/tests.js
index e86491c0..646f7192 100644
--- a/exercises/10-Your-Own-Font/tests.js
+++ b/exercises/10-Your-Own-Font/tests.js
@@ -33,7 +33,7 @@ describe("All the styles should be applied", ()=>{
});
test("The link should be included in the head tag", ()=>{
// let headContent=document.getElementsByTagName("*")
- expect(link.length).toBe(2);
+ expect(link.length).toBeGreaterThanOrEqual(2);
});