Challenge Waypoint: Specify How Fonts Should Degrade has an issue.
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.73 Safari/537.36
.
In my understanding we only need to comment out the "google call" or the first line like this
because the code has already in h2 the degradation of the fonts font-family: Lobster, Monospace;
(After reset code I have )
<link href="http://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p class="red-text">Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p class="red-text">Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
But it does not work. I reset the code and refresh (F5) but I can't proceed to the next exercise.
My solution:
I have the exact same problem with degrading my code as well, I cannot move to the next exercise. If I remove the , then 2 of my problems are correct. But if I add them in, my 2 correct ones become incorrect and I'm correct on the other 2 that were wrong. There seems to be no correct answer. My code is attached below: Can someone please help me here? Thanks, AF
Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
Sorry!
Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
The comment in css is not instead use /* */ to comment your code.
El 11/08/2016 15:50, "Angela Foster" [email protected] escribió:
Sorry!
.red-text { color: red; } h2 { font-family:, Monospace; } p
{ font-size: 16px; font-family: Monospace; } CatPhotoAppKitty ipsum dolor sit amet, shed everywhere shed everywhere stretching
attack your ankles chase the red dot, hairball run catnip eat the grass
sniff.Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere
rip the couch sleep in the sink fluffy fur catnip scratched.—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
https://github.com/FreeCodeCamp/FreeCodeCamp/issues/4956#issuecomment-239287937,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ALOzrCU-mrBFbAgykMBDQvkYoRDCx9Q9ks5qe4sjgaJpZM4GtoNj
.
The comment in css is not instead use /* */ to comment your code.
Before Monospace you need to erase the comma ",". Sorry for my english i speak spanish.
Okay, thank you so much for replying. Let me try it now.
Oh my gosh! Why does this seem like Rocket Science? It didn't work.
h2 {
font-family /_Lobster_/ Monospace;
}
And why not erase the Lobster word? You can't?
2016-08-11 16:26 GMT-05:00 Angela Foster [email protected]:
h2 {
font-family /_Lobster_/ Monospace;
}—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/FreeCodeCamp/FreeCodeCamp/issues/4956#issuecomment-239297573,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ALOzrNuk-WxorW0Vdxj8DckNS7vHyAKRks5qe5NxgaJpZM4GtoNj
.
The issue tracker is for reporting bugs only. Please use the help chat room or try looking through the forum for help with a specific challenge.
Happy Coding
Yeah hahaha, sorry.
2016-08-11 16:28 GMT-05:00 Berkeley Martinez [email protected]:
The issue tracker is for reporting bugs only. Please use the help chat
room https://gitter.im/FreeCodeCamp/Help or try looking through the
forum http://forum.freecodecamp.com/c/free-code-camp for help with a
specific challenge.Happy Coding
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/FreeCodeCamp/FreeCodeCamp/issues/4956#issuecomment-239298348,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ALOzrJrW8VNDs1BELoJgv54kr95sSId5ks5qe5QbgaJpZM4GtoNj
.
Yikes! Sorry I thought that's where I went. Work with me here, work with me. I will go there directly.
Thanks much
Angela Foster
On Aug 11, 2016, at 16:30, Berkeley Martinez [email protected] wrote:
The issue tracker is for reporting bugs only. Please use the help chat room or try looking through the forum for help with a specific challenge.
Happy Coding
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
The after Monospace (and the semi colon) in h2 line of code.
You simple need to add your comment tag just below the script tag.
@caos21 i used your method to degrade lobster to Monospace buy putting the comments around the link for google fonts and it worked.thanx so much.
Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
Put your comment tags around the google link at the top
i have similar issues ...... degrading to monospace from lobster
comment the google links like this and then in the CSS Style delete and rewritten like this h2{font-family: Lobster,monospace; } and Ready for the next challenge
Most helpful comment
The after Monospace (and the semi colon) in h2 line of code.