Profile image of anonymous
Submitted by anonymous
about 12 years

Font Size Problems? Check Here First!

Hi everyone,

I’ve seen a lot of confusion surrounding exercises 2 and 3 in HTML Basics II > Styling the font! I want to be clear that the problem isn’t related to these SCTs, but the error messages haven’t exactly been the clearest, so I’ve updated them to clarify some hard-to-spot errors.

If you nest your <p> or <h1> tags incorrectly, like this:

<h1 <h1 style="...">Text</h1>
<h1> <h1 style="...">Text</h1>
<p <p style="...">Text</p>
<p> <p style="...">Text</p>

Instead of correctly, like this:

<h1 style="...">Text</h1>
<p style="...">Text</p>

You’ll see the correct output in the live preview (that is, the font size or color will change appropriately), but the exercise won’t pass you because your HTML is syntactically incorrect. The SCTs in these particular exercises have been updated to alert you if they detect improper nesting, which should help the issue.

If you find you’re getting a really weird font-size reported back to you, such as 18.1818181818px, the problem is that your browser’s zoom needs to be reset. If you type ⌘-0 (on a Mac—that’s the command key and the 0 key together) or Ctrl-0 on a PC, that should reset your zoom. You can also do this in most browsers by going up to “View” and selecting “Reset” or “Actual Size.”

Hope this helps!

Edit: I have seen some reports of browsers that automatically resize fonts below 9 or 10px, so exercises have been updated with a floor of 10px.

Answer 515530318b4b5b28f0000739

232 votes

Permalink

I think there is a bug in the system. I tried this code...

   <h1 style="color:green;font-size:16px">Big Heading</h1>
        <p style="color:violet">A giant bear and a little duck were friends.</p>
        <p style="color:red;font-size:10px">But the bear got hungry and ate the duck.</p>

Tried it in firefox and chrome both, refresh zoom, reload, reset. Always got an error saying either my heading looked like 32 px or was supposed to make the heading green. Finally, I removed everything between the body tags <body> </body>  and got **That's Correct!**
Profile image of anonymous
Submitted by anonymous
about 12 years

295 comments

Profile image of anonymous
Submitted by anonymous
about 12 years

Thanks! Worked for me to remove everything between the body tags! Sweet!

Profile image of anonymous
Submitted by anonymous
about 12 years

Ha, thanks! Worked for me, too. Got those same errors.

Profile image of anonymous
Submitted by anonymous
about 12 years

Same here. Thanks for the tip.

Profile image of anonymous
Submitted by anonymous
about 12 years

Ha that’s hilarious, worked for me too.

Profile image of anonymous
Submitted by anonymous
about 12 years

it works

Profile image of anonymous
Submitted by anonymous
about 12 years

Thanks for the tip,it works

Profile image of anonymous
Submitted by anonymous
about 12 years

WOW. Thanks, never would’ve guessed.

Profile image of anonymous
Submitted by anonymous
about 12 years

Lol. thanks, how did you come to this conclusion? fairly random

Profile image of anonymous
Submitted by anonymous
about 12 years

As for how I came to that… I kept getting errors with everything else, so I wondered just how it would react to nothing!

Profile image of anonymous
Submitted by anonymous
about 12 years

really thanks

Profile image of anonymous
Submitted by anonymous
about 12 years

removed body and passed……-_-|||

Profile image of anonymous
Submitted by anonymous
about 12 years

Thanks .. it worked

Profile image of anonymous
Submitted by anonymous
about 12 years

Like everyone says … this guy is right, thanks for the heads-up

Profile image of anonymous
Submitted by anonymous
about 12 years

good idea

Profile image of anonymous
Submitted by anonymous
about 12 years

same problem here….thx, it worked.

Profile image of anonymous
Submitted by anonymous
about 12 years

it just worked!This it a bug!

Profile image of anonymous
Submitted by anonymous
about 12 years

thanks

Profile image of anonymous
Submitted by anonymous
about 12 years

I did it and it still didn’t work, until I realize that I had forgotten to put the “-“ in between font and size.

Profile image of anonymous
Submitted by anonymous
about 12 years

omg ,it works ,how did u find that!!

Profile image of anonymous
Submitted by anonymous
about 12 years

What does impact mean? I have a problem in excercise 4 getting the third list, which saysChange the font size of the third listed item to 10px and the font to Impact. Make sure to capitalize Garamond, Verdana, and Impact as shown” but what impact are we talking about? I got the code right

Profile image of anonymous
Submitted by anonymous
about 12 years

uh oh man, impact is a font name! Gotcha now

Profile image of anonymous
Submitted by anonymous
about 12 years

it works….orz

Profile image of anonymous
Submitted by anonymous
about 12 years

The chrome browser automatic change the font size to 12px. How should i do?

Profile image of anonymous
Submitted by anonymous
about 12 years

WORKED…BUT WIERD

Profile image of anonymous
Submitted by anonymous
about 12 years

Typed it out perfect, everything is reset. This exercise is BS.

Profile image of anonymous
Submitted by anonymous
about 12 years

Thanks

Profile image of anonymous
Submitted by anonymous
about 12 years

thanks

Profile image of anonymous
Submitted by anonymous
about 12 years

what do you mean removed everything between the tags? I believe I have done that but it still doesn’t work. Can someone please clarify?

Profile image of anonymous
Submitted by anonymous
about 12 years

I think the explanation is flawed in this lesson. He uses the example of of href tags, but href tags inside a paragraph are thus:

Text Linked text

(At least this worked for me.) This makes you think you have to put a full

before <p, which is not the case.
He shows you an example of how not to code it without a example of the complete correct code.

Profile image of anonymous
Submitted by anonymous
almost 12 years

Definitely a bug if you ask me. I tried it over and over again in Opera 12.15 and it didn’t work. I pasted the exact same code to a new tab in Firefox and passed immediately. Well, maybe it’s Opera’s fault?! On the other hand: If people are also having probs with Chrome…

Profile image of anonymous
Submitted by anonymous
almost 12 years

Awesome! Thanks for the solution. Anyone at Codecademy that can fix this bug?

Profile image of anonymous
Submitted by anonymous
almost 12 years

I find another reason for the problem of a really weird font-size reported is the chrome set a min and max font-size it support if your font-size is out of the range the browser will adjust itself so you can reset the min and the max level in setting

Profile image of anonymous
Submitted by anonymous
almost 12 years

Crazy. Removing everything within the body really did let me pass. I had been racking my brain for days. Thanks a lot for the tip.

Profile image of anonymous
Submitted by anonymous
almost 12 years

The system is telling me that my font is 16px and it should be 12px but it is set for 12px. This is what I have:

  • This item is big Garamond.

  • This item is medium Verdana.

  • This item is small Impact.

  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I had an error saying my font was 16px but should be 16px!! Like outbackxi said removing the body lets you pass..

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you so much! My code is correct, but it will not accept it!!! Thanks again for such a life saver!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    There is a mistake in this code after : font-size: 16px”> I guess it should be font-size: 16px;”> is missing a semicolon try to check it.

    Thanks

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    In the code “color: green” you cannot have the WORD color in the code. You only need the actual color.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    sometimes, if you change the font size of your browser, the size of the screen will be NOT TURE. you can 1.reset the font size in browser settings 2.zoom in/out the screen and try Save & Submit Code again

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thank goodness. deleting everything between the body also worked for me.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    i got this error too

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    me too

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    yes it works!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    i also got this error

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks for the insight. I was stuck for days and when I deleted everything received the that’s correct message. How weird.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    i had the same problem so i did it like this:

    Big Heading

    and it somehow worked ..
    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    yeah it doesnt matter where i put it in the “ “ and doesn’t matter what size i change it to. no matter what it still stays 16px instead of changing to 20

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    actually when i changed the = to a : it worked.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    it worked for me too…..kind of annoying

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I even tried copying and pasting the correct style and it still didn’t even work!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Have to use this method…

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Same here, got same message, removed everything between body tags and worked to pass to next lesson. Working on Chrome.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Same here, didn’t work after reset.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Go to your browser’s settings and make sure in the font settings that your minimum font setting is set to 10px… if not then change it, save & go back to the code. It should pass you then!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    On exercise 4/5 in Styling the font! I get the error that the second paragraph contains 16px instead of 12px when, in fact, my second listed item is as shown

  • text
  • So, what do I do?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I reset the code, tried again, and it worked. Not sure what that was about :/

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Alexander Curtis Bernal. I have Tried Reset And Reset Again like 800 times now. HELP!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    this works for hope it will work for you 2!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Hey Guys, I am stunned at all the votes and comments! Thanks! Anyway here is some help maybe, for you chrome users. Go to settings. In the search box type in font. Click enter. Click on the Custom bar and select a smaller font size. Hope this helps someone.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years
         	<li style="font-family:garamond;font-size: 16px">This item is big Garamond.</li>
    
    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    am a bit lost

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thank you richard. i get it now

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks! Got it figured out.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks! It works orz…

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    when i removed the “

    “ and all the “

    “ and only used only the “

    “ in finally got the green.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    This was the only way I could get past this one!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thans.i agreewith u!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I’m got through 2nd lesson by doing this. Now I’m having the same problem with the 4th lesson. Anyone found a way to get a green light?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    i reset to the default font value ,it the minimum font size. @waltzingmathile, try fix the font-family name like:
    Verdona to Verdana

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thanks………. I agree……………… sort of

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    hello, r you guy`s stuck on font family?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I know!!!!! its

  • This item is big Garamond.
  • hahahaha…now I can carry on!!!!! yes!!!!!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I thought its was…

    but it is not, that was everything that was giving me the problem!!!! You guy`s should try it!!!!!!!!!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    This works for me

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    The problem is in the text on the left side

    should be replaced by
  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thank you. it’s works

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    BlogSlayer;Doing_what_your_doing;THX

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    tank you, it’s works

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Change another browser may work.Here’s the proof: http://i.imgur.com/AQHZaoo.png

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Yep, same problem and I fixed it the same way…by removed everything between the body tags and got a “ Your are Correct” message. There’s definitely a bug in this tutorial. I’ve noticed a few here and there.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Removed everything in the body and it worked! Thanks!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I agree - bug here…says I have 32 size font, but I have 16.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    i have the same problem like susan, says i have 32 but i have 16

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks,that is a good ideal.let’s remove everything and it will be worked.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    This was a tough one but I figured it out, finally!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    same :-/

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    this

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    same

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    same

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    agreed

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    PPl r grumbling as if they pay for this…I’m getting the same problem…if you nkow what you did is right proceed even if it shows an oopa!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    It wont let me move to the next level thought I’ve completed the codes correctly

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks!It worked

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks to everyone up voting because the stupid thing tells us how to do it wrong, but not right…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I have the same problem

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I have the same problem as tim, tried it in chrome, firefox, and safari, still it wouldn’t accept the code I put into the prompt.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Yes,Me too

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Wow! 100 votes! I feel like I’ve gone viral! Thanks everyone!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Congrats on getting 100 votes! Not sure anyone else has gotten that much…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks, Maerik.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Did the same thing ad it passed hope it was right

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    for me the problem was different, i had changed the color of the

    Big heading

    to green but along with the heading the paragraph under it also turns green. And then when i change the color of the paragraphs they change it. So it did not accept my code. That’s because i followed the example on the left side by the author. Which said :

    but i believe that’s wrong you should put a or a

    at the end otherwise its detected wrong.

    It works after i followed the correct code from Eric Weinstein, i.e

    Text

    Text

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Now it’s 106. People apparently like your coding. You should post more solutions to coding things…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    You have some spacing errors. I had the same problem until I corrected my coding with the following:

    A giant bear and a little duck were friends.

    But the bear got hungry and ate the duck.

    So just fix your spacing and it should accept your code.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Note: I didn’t indent so don’t copy/paste

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks Maerik; I do post code occasionally. Lol Colten; My spacing should have passed. The problem is if your browser font-size is not at a compatible setting, it wouldn’t let you pass.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Have decided not to comment anymore, but just let me say congrats on getting this many votes, and I like you’re picture. It reminds me of Kootra, who has this character named Caticus Meowicus(Mount and Blade: Warband; YouTube series).

    Profile image of anonymous
    Submitted by anonymous
    over 11 years
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Cade, I could be wrong, but I think you don’t need the

    before the <p style tag.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks!!!!!! remove all the codes between body tag is OK

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Glad that I can help out.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I remove all the codes between body tags,but this way doesn’t work for the course “FONT FAMILY”

    Profile image of anonymous
    Submitted by anonymous
    over 11 years
  • This item is big Garamond.
  • Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks, it worked.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    WOW, it did works,thank you ! ,

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Glad I could help you folks out.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    It’s sure!!!! It’s very useful…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    It worked!!! Thanks #smiles

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    your welcome.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Worked like a charm, thank you!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank you Tim Mullins! I spent 37 arduous minutes on 9/16 in HTML Basics II!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    it work, thank you.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks! that worked.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Fantastic,you’re brilliant!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    omg can’t believe that worked!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Really Thaks

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Immense. Good work!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I can’t believe it! It works, man!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Don’t know why, but it works! Thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Eric, Thank you!! super helfpul!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I can’t believed it actually worked… Thanks for the advice!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    definitely a bug!!! thanks, tim!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks Eric! I change the font setting in my Chrome browser and it did work. All you need to do is to go to Chrome setting.Advanced setting>Web Content>Customize Fonts>Minimum font size>slider to 10. That is all. It works

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks Tim! The only way I was able to pass was my deleting everything between the body tags and it said “Correct.”

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    My minimum font size is set to 6 already. I had to do a delete body content to get a pass.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    HI, I think the way they explaining nesting in this lesson is more confusing than most, given that the correct examples provided don’t actually finish the nest (it just gives this…

    … which doesn’t show what to do with the text. If it had your complete correct example above, that would probably lessen a lot of the confusion. Thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks Guys for all the comments!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I did the same thing. I had set a font size of 16px but it stated that I had 32px. I then removed everything between the body tags and got the same results you did.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I got the exact same: 16px, says it’s 32px… something’s messing up. I’ve com-0 and everything.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    There are bugs all throughout the system. on lesson 12 of HTML basicsIII, It asked to add a

    tag and insert a box with the
    . It would not work no matter what zoom or reset I did. The only way it worked was to carriage the original line above it down and insert my new code on the line above the supposed line where I was asked to insert the code. Then it worked…nothing typed any differently because I copied and pasted it all…definitely a bug in the system with the fonts, px sizes.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank you!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Oops, try again! Did you set the first paragraph’s font-size to 10px? It look s like it’s 12px. (If you’re getting a weird decimal font size, check the Hint.) why.i think i am right. I really type as rules

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    On 9/16, I wrote the code below in Internet Explorer and it worked fine, then opened codecademy in Chrome and it Errored on me. Nobody likes it, but maybe use IE.

    Big Heading

    A giant bear and a little duck were friends.

    But the bear got hungry and ate the duck.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m currently working on lesson 10 of 16 on HTML Basics II (Specifically Font Family) and it keeps telling me that my second

  • ‘s font size is 16px instead of 12px. This doesn’t seem possible to me, I’ve re-written the code plenty of times and had others review it. Can anyone help me pick out my error? Here is the code I’ve entered:
  • Profile image of anonymous
    Submitted by anonymous
    over 11 years

    worked 4 me I am on next lesson, deleted and dint work! HELP!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Think there some bugs with the program i running on Chrome when i try to change the font size to 10 px its stated this “Oops, try again! Did you set the first paragraph’s font-size to 10px? It looks like it’s 12px. (If you’re getting a weird decimal font size, check the Hint.)”

    Even do i have try it many time its keep giving the same message

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    im having the exact same problem as these 2 ^ it keeps telling me that it ‘’looks like your first paragraph is set to 16px’’ when its written 10px

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    When i type in this code

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Ok its seems to work on Safari but seem not work on chrome When i type in this code

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    For those of you having the problems where your code is correct but not changing the size - what worked for me was putting a dash between font and size - so it would look like: style= “font-size: 12” instead of : style= “font size: 12”

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    worked for me too!genius!haha

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I had the same problem and I guess you jsut resolved it. Thanks! Does that mean that I’ll have to put a dash everytime I’m using Chrome?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I had the same problem and I guess you jsut resolved it.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Denise- I believe you should put a dash regardless of what browser you’re using. In general, when not writing things such as headers, paragraphs, etc., you should use dashes instead of spaces (i.e. font-size, font-family, inline-block, margin-left, etc.)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    good point dcgoss! I don’t think html will work without the dash in those objects.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I think that’s correct tim! :D

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey guys you got another trick on your hat? cleaning up between

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Could you post your code himiracles?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    himiracles; sometimes it can be the browser that you are using. I use Chrome for most of the exercises. You can also try resetting the browsers’ minimum font-size to ten. There are several post on here already about how himiracles; sometimes it can be the browser that you are using. I use Chrome for most of the exercises. You can also try resetting the browsers’ minimum font-size to ten. There are several post on here already about how to do that.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks, tim, am also using chrome. i’ll see if re-setting the font-size will help. hi Derek, here below is my code:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    @derek, (sorry, tim) i made a mess with the above post. here again is my code:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    @Jiji Rentsch, it appears to me that you are forgetting the colon between font-size and your value (i.e. “font-size: 16px” as opposed to “font-size 16px”). Give that a shot and see if it helps. If not - I’m here all week;)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m sorry for intruding but I’m having the same problem and I used a colon… Here’s my code:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    NEVERMIND!!! I got it! You have to erase everything though… it’s rather sill but codecademy accepts it all… it’s a pain but it’s worth it :) onward with zeh lessons!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Glad that you solved it Emily, but I have an alternative solution that might be less of a hassle - if you copied that code directly from your lesson I believe that your problem may be as simple as spelling. You spelled font “fonr”! You also spelled font-family “font-famil”. Not totally sure about this one, but putting a space between your style type (font-family:, font-size:, etc.) and your value (12px, Verdana, etc.) may also resolve the issue. (i.e. font-size: 12px as opposed to font-size:12px)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Sorry, my example at the end got cut-off. It should be (i.e. font-size: 12px as opposed to font-size:12px). Notice the space! haha

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I removed everything between and it worked. Big bug! lol. Who would’ve thought it would work? lol

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I also got the same bug and solve it by removing everything between

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Removing everything between the

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    @Derek - thanks so much for your patience and help…i’ve tried everything but it just doesn’t work - so am giving up….this is just too frustrating….i’ve tried java as well and the same thing happened….so i guess goodbye codeacademy!!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    yup- remove everything between tags and click save and submit. Worked like a charm. We know our code is right, just gotta do that to move on

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    @Jiji - don’t do it! we’re so close to fixing this! I will post my code that worked and see if it helps

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    http://www.tiikoni.com/tis/view/?id=2fba629 —– everybody check this code. It worked for me using chrome

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I removed everything between the body tags and got That’s Correct!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Oh my god,thank u awesome body!It works!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Me too!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same deal bro, thanks

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    reset,then it is OK.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    how crazy is that!! Removing everything between the body tags worked for me too. Ok, not a great learning experience…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    it is work!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    sadly that worked- maybe it has something to do with me using iPad to code!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    yea there is a bug i deleted everything from the body and it accepted my coding event hough i had it correct.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same here.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Mine is the same as everyone’s. The most frustrating error, if I was to pick, is “looks like your first

  • ‘s font-size is 16px instead of 16px.” What can I do with that?
  • Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I am having exactly the same problem in both Firefox and Chrome, Codecademy really needs to fix this!! Super annoying problem!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I had no problem .-.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    yes! i cant get past this “level” and i do believe i have it in right!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    yeah. It still not working. I think there is a bug.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    tim mullins: nice trick

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    same thing happened to me on the “font size” level i just emptied bodies ang got correct!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    This page is bugged, just bypass the page by going up to where it says “HTML Basics II” and using the drop-down box to move on to section 11/16

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    mine is saying it looks like i coded it as 16 px but it’s coded properly as 20px. I can’t get by it.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    did you reset your browser’s zoom to 100%?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I figured out the issue. The instructions could be a bit more clear. bugsy90 try removing the open tag after the style tag

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I have the same problem. My code wouldn’t work in Opera, so I tried it in Firefox, and it worked immediately !

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks for the tip on the weird font size. You saved me much frustration. Fortunately I came to you after having this problem pop up twice.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I think so.I tried so many times.At last ,I took away all codes between and then system accepted.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m having the same problem! I’m using Firefox as well.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    oops!! Just figured it out! I was leaving the colon out after “font-size”.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    that’s it?it took me an hour just thinking how can i get this correct….uh…stressed…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    sorry to be beating a dead horse but i’ve encountered the SAME EXACT PROBLEM and the way to pass is to just take out everything in the body tags. strange.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    same problem

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    просто вместо р поставить р1

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I have same problem

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    dont forget to type the “ - “ in “font-size”!! I made that mistake and got the same error as you :$, now it works fine!! :)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    there is a ! clone is missing after the duck !

    this is a correctb do for all <p
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Alrighty then. It is telling me that my 10px looks like 16px but when I do ctrl -0 nothing happens. I use Firefox. It also doesn’t do anything if I do ctrl and the scrolly thing on my mouse, which is how I usually zoom in and out. Solutions? Also all my fonts look the same size. Thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    it keeps telling me my 10 is a 16 and that the V in Veranda is capitalized when it IS. There is a problem with this lesson, it can’t recognize what it should be able to recognize!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Yes, very annoying problem. I’m being told that my font size is 15.555556297302246px when it’s clearly 16px.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks so so so much, it’s work ! WOOW

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    crap, my error keeps tellin me that my font is 32 when it’s 16 :(

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m also getting this “Oops, try again. It looks like your header’s font-size is 32px instead of 16px.” I’ve reset the code about ten times and though I CAN possibly be stupid enough to type in the wrong code every single time, I doubt everyone else with this problem is typing in the wrong code, too. I’ve also zoomed in and out, reset the zoom and cursed silently in my head. If I begin hurling invectives out loud, should that do the trick? I don’t want to frighten people…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Am I missing something here?

    Big Heading

    A giant bear and a little duck were friends.

    But the bear got hungry and ate the duck.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Ugh. I cleared the body and it let me pass with a “Way to go!” At least I can move on. Sigh…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    It’s a bug need to be fixed.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks mate. removing everything between body tags works. :)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    remove does work, thx~

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Definitely a bug. Removal just to move onto next lesson, thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    And I have the same problem, but I fix it when I removed averything between body tags.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    same problem

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Having the same problem. This code:

    <h1 style="color:green;font-size 16px">Big Heading</h1>
    

    is getting me a message that my heading is size 32 and therefore incorrect.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I removed everything between the body tags as suggested and apparently, ‘That’s correct!’

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    After removing everything from between the body, I get the same message Correct – bug in the program.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Also the same problem.In the 8 and 9 practice of Html Basics 2,my code is:

    ,but I got a error message which told me the font size is 12px instead of 10px.And i find if the pixel in your code is below 12,then you will get the same error message.Hope to update the system soon.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Poorly worded introduction. Give me a clearer example of the CORRECT structure, not 2 examples of what not to do (I can come up with those on my own).

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same prob :(

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I am having the same problem, way to ruin my day off I took to spend this time learning this stuff :(

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m having an issue where any font size below 12px shows up as 12px. I’ve attempted to change the zoom size and not success. I know the syntax of the line is correct because my other two lines are correct and formatted the same.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same here. Resetting the font size does nothing. It shows I’m at 100% font size, don’t know what else to do. Just want to proceed because I know I have it right.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    i’m having an issue my editor shows an error indicating i have put up a font size of 16px when in reality its 20px…i cant procced because of the error and i know i have it right… its annoying

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    YUP! I’ve tried Chrome, Firefox, even Internet Explorer. Nothing works! Resizing does not work. I’ve been to the local library to use their PCs and contacted my wife a work to have her try. Still NOTHING! Going on a couple of days now!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I am having the same problem, where it says i’m at 16px even thought it’s clearly 20px and I’ve resized and everything. The completist in me in not happy about this.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I am also having this problem….Woh woh wohhhhhh

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I had the same problem, so I deleted the whole body and it passed.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thanks so much tim mullins!!! I know my code was right and just wanted to move on.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Wow, that is so amazing! So OP!!!!!!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I am having the same problem as listed above. Not letting me proceed with training. After I have reviewed the boards here, still no result.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Whoa, there must be a bug in the system or what! Your code looks correct to me, if pressing Save & Submit after you erased all the content between the body tags, and getting a correct answer, actually worked, clearly there’s something messed up here.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thank you a lot!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I think my code is correct because the colours change on the web. But the exercise says my code is wrong:!DOCTYPE html>

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    THANK YOU!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    THANKS so much. This is stupid and should be added to the hint. “If you are getting this error about your font size being 12 then you should hit cmd-0 on Mac” wtf. Some of the cryptic errors i’ve dealt with on here.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    This post helped me. My code does not work in Safari but works on Google Chrome.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I get an error saying “Oops, try again. Did you remember to change the first

  • to the font Verdana?” and then if I change it to that I get “Oops, try again. Did you remember to change the first
  • to the font Arial?” which is it how do I progres
  • Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I tried out the code a hundred times finally I too deleted everything in the <body.> tags and it worked showing way to go!. Lol

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    It’s wrong for me as well. I have it correct. The validator has a bug. Too bad you can’t skip a lesson.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Nothing wrong with this -

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I think that another big thing is spelling. I had been typing “veranda” as opposed to “verdana”.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I confirm that question number 10 works with <li style=”font-size:16px;font-family:Garamond> and so on for the two last one. No need for

    tags.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    i have this:” It looks like your first

  • ‘s font-size is 16px instead of 16px.”
  • Profile image of anonymous
    Submitted by anonymous
    about 11 years

    ya i to got the same problem

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    get the same problem

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I have too..what too do???

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    how do you get past it then? Im in HTML basics 2 and im in this part and i have no idea how to get past it. Help please

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Me too same problme

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    same problem here. also deleted everything between the

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    WE HAVE THE SAME PROBLEM!:/ Pleeeeaaase somebody help us;)

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    MAYBE ADMIN ‘’ CODECADEMY’’?!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    hey i found out wht i was doing wrong…i was missing the “-“ between the words font size

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    hey guys!! just press ctrl+0 on your keyboard once. {control+zero}.. it will work

    Profile image of anonymous
    Submitted by anonymous
    about 11 years
    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    The bear and the duck story is sad

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I can’t get pass HTML Basics II 9/16. Ctrl+0 does nothing for my chrome browser. I tried to fiddle with the chrome font settings, which resulted in changing the size of the pixels, but I still couldn’t get it to 16px. How do I get pass this lesson?

    Profile image of anonymous
    Submitted by anonymous
    about 11 years
    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    am stuck in HTML Basics II 8/16. font size thing i cant change the pixel

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I agree with assault, there seems to be a bug that prevents you from continuing with the right answer.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I agree, there is some thing wrong with this exercise and just a waste of time. I find with all other languages initial few chapters go smoothly then, I stuck as in this one.. This is very frustrating

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I have the same problem

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    same i too get

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Just change the h1 tag to p tag it works

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Here. Steph ‘s answer worked: Hello, in exercise 8. Font size you see the example:

    Use font-size instead of size (incorrect name of the property).

    and

    Use Verdana instead of Veranda (font name misspelled).

    Do you understand me?

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I changed font size to font-size.Solves it. I’d been stuck awhile.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    same problem!!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    It works !!Thank you!! It’s so funny :D

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    My computer is saying that my 16px is 32px and it’s really weird.I really think it’s a bug,because I’ve tested every other way it could have been wrong and it’s still saying the heading is 32px.Could someone please tell me what the hay is wrong with it?

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I am having problem with the font style . It gives error like “ Did you remember to change the first

  • to the font Arial? “ even though it is in Arial font. I could not move on, it is frustrating . Can anyone help me with this?
  • Profile image of anonymous
    Submitted by anonymous
    about 11 years

    The problem got fixed, Don’t worry .

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    The same here!!!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    It said that my 20px looked like 16px. I have reseted the browser a bunch. It is not working.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    for me , i write the correct code in chrome ,but it will give a wrong px size hint, so i change to firefox, it solved!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Oops, try again. It looks like your paragraph’s font-size is 16px instead of 20px. Oops, try again. It looks like your paragraph’s font-size is 16px instead of 20px.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Mine says Oops, try again. Did you set the first paragraph’s font-size to 10px? It looks like it’s 16px. (If you’re getting a weird decimal font size, check the Hint.)

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Had the correct code, it didn’t work. I deleted the content in

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I had the same problelm, thanks your solution.

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    indeed it worked by removing everything so an empty answer is correct …

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    I did that too, same problem and it got resolved when I removed all the text in

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    me too!

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    Thank you!

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    Same here, had fine code and the system wasn’t letting me through. Refreshed and also tried restarting the browser, did not try another browser. Removed everything between and was passed. Using Chrome (version 34.0.1847.132).

    Answer 515a9e91e34f75c79800113b

    76 votes

    Permalink

    I have a problem with this.. i tried reseting the browser…

    Oops, try again. It looks like your second

  • ‘s font-size is 16px instead of 12px.
  • Profile image of anonymous
    Submitted by anonymous
    about 12 years

    107 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    i got the same message and I’m stumped. I feel like all the code is correct.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Ok, to fix this; youu need to take away the tag before the code. I know it is not right, but the system accepts it as correct

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I had some really bad problems with this, but it seems to work!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    i keep getting the same thing.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I’ve tried re-sizing; changing safari preferences; zooming to actual size; untagging - everything suggested here; unfortunately nothing works for me.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I have the 16px instead of 12px comment too…

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    As well as I

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Same here.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I am getting this message, “Oops, try again! Did you set the third paragraph’s font-size to 40px? It looks like it’s 16px. (If you’re getting a weird decimal font size, check the Hint.)”

    I do have the font to 40px. The code that i am using is:

    "Some text for you to make tiny!">

    "Some text for you to make normal size!"

    "Some text for you to make super big!"

    Help appreciated!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Same here.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    same here

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Me too!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Bueller…. Bueller….?

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    If the

  • and
  • tags are left in the code the change in font size is not recognized. That is, you can change the font size for the text to be 16px, 12px, and 10px respectively, but the ordered list number (1., 2., and 3.) are not affected size-wise, which seems to yield the error. I removed the
  • and
  • tags and it works. HOWEVER, it would be neat to know if the numbers’ size can also change, not just text that follows them.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    me too!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    got this message:Oops, try again! Did you set the first paragraph’s font-size to 10px? It looks like it’s 12px. (If you’re getting a weird decimal font size, check the Hint.) It seems I cant fix this problem,

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    try to zoom in over 100% (ex. 150%) and try your code again

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I had same problem and removed everything, like the guy above says worked. Try!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    嘎榮 It wont work for me

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Nothing I try is working.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Nothing is working for me either. I tried reordering the styling sequence. taking out and inputting various other things. but still no luck.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    nothing happes…..so sad…..

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Try to remove everything between body tags like the guy above recommends.It happened to me too but this solution works,I don’t know why.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Try to remove everything between body tags like the two guys above recommends.It happened to me too but this solution works,I don’t know why.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    èrfect

    perfect

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    OMG it works!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    嘎榮 It wont work for me.But why?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    What I did, don’t forget the dash between “font” and “size”, your code should look a little bit like this:

    Text

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I kept getting the error, “Oops, try again! It looks like your second

  • ‘s font size is 16px instead of 12px.” No matter what I put in.
  • Finally got past it by deleting everything between

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    On chrome I fixed it by going to tools then encoding and turned on auto detect

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    On google chrome and I still can’t fix it. I’ve tried deleting everything in the , turning on auto detect, and deleting

  • . If I change the original coding, it says that I have to reset the code. Every other time, it comes back with “Oops, try again! It looks like your second
  • ‘s font size is 16px instead of 12px.”
  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    me too,always tells me”it looks like it’s 12px” what’s the problem.Here’s my sentence:

    Some text for you to make tiny!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    The same thing happened like Bill…..Tried Crtl-0, tried set encoding and turned on auto detect. Neither works.What the world is going on???

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    So frustrating, I’ve tried everything and it won’t pass me when there’s clearly something buggy.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I don’t know if this is correct but I just dropped the closing tag completely and I was given pass. Like this:

    some text for you to make tiny!>

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thx!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    get passed by deleting everything btw , Thanks Eric J Stover

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Nothing is working for me! Is there any way to move on without getting a pass because this just wont pass me no matter what I do!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I’m having the same issue. I can’t move past this lesson even though my code is correct:(

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I have the same problem and will try your trick.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    The trick didn’t work for me. I just skipped onto the other lessons.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    make the code like

  • worked for me
  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    hujf99’s trick works for me!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    huif99’s trick works for me too!Another way is delete all of it and it will pass!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    hufj99’s trick worked for me too. It doesn’t look quite right; the 40px was displaying the same as the 20px size using a Chromebook…but it was accepted.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    It worked when I zoomed the browser to 150%, and nothing need to be changed.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    @LitLiao is Right

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    @LitLiao smart one

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    @LitLiao his method works

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    @Litliao is Right!!!!! ><

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Removed the “<p” tags. Just like previous posters said, it works. Weird.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years
    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thanks for teh help dan

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Yup definitely a bug. REMOVE THE

    TAGS and it works ….

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Try to remove everything between body tags like the guy above recommends.It happened to me too but this solution works,How unbelievable

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    weird, removing the <p at the beginning made the output incorrect but let me move on tot he next lesson

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Tried what you did and removing the p tag surprisingly gets you past this.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Try it like this:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Excellent tip..much thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks bro! worked for me!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank god removing the code between the body tags worked because my brain was about to explode. Recommend it to all! Definitely saves you an hour of pointlessly playing with the settings.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    YOU HAVE TO PUT FONT FAMILY BEFORE FONT SIZE!!!!OTHERWISE IT WONT WORK!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Hc333 thanks it definitely worked!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks Omar!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Hc333 is right. YOU HAVE TO PUT FONT FAMILY BEFORE FONT SIZE!!!!OTHERWISE IT WONT WORK!!

    text > *First letter of the font should be capitalize, to check if it change try other fonts example: Impact, Garamond. *don't put

    after text. *if

    did not work. Try putting/using

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    If you are using Safari make sure the Accessibility checkbox is unchecked in the Advanced Preferences tab. Accessibility will force all fonts to be no smaller than 12pt or whatever size you have (or haven’t) specified.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    dont forget dash between font and size.it will look like this…font-size

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank you Volitioner! That’s why it kept telling me I put in the wrong font size!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same here

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks for the reminder!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    delete everything between ,bingo

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same problem! Anyone know how to do this??

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I just got thi error for no aparent reason. Resseting the code and wrting it back again should solve it. At least it worked for me.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I had this same problem! I’m going on the 5th time rewriting the code with no luck.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    For those of you having the problems where your code is correct but not changing the size - what worked for me was putting a dash between font and size - so it would look like: style= “font-size: 12” instead of : style= “font size: 12”

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Have the same problem there is a bug in this course >:(

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I also have the same problem, I’m doing everything right and I have even tried looking at my Chrome settings, to no avail. HELLLPPP!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Derek, I am finding this forum very useful. Thank you. BUT after the numbers it says to place a px. mine looks like this:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    That’s absolutely correct Gabriella! My mistake - glad you caught it. I didn’t copy and paste from my code so when I typed it I just forgot to add in the px or em at the end.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Glad to be of service..

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    remove everything between tags worked for me!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    me, too!!it works !! big bug,lol:P

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    It works too buggy

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    what???????????????????????????????

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same problem for a web site that teaches coding this is very buggy code. I am beginning to think they want money to continue!!!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    It’s not buggy. You guys are just overlooking your own mistakes.

    Tips: Make sure you don’t add a

    before

    because p style already accounts for your paragraph. As well, make sure you are using equals signs in the right places, and semi colons in the right places font-size is always followed by a semi-colon, while style is always followed by an equal sign

    Also make sure you use ‘px’ after your font size

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Was typing “x” instead of “px” after the font size. Thank you Majishaikhlive. Just took a second look.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I agree with Maji Shaikh - check my code as a reference if you need it: http://www.tiikoni.com/tis/view/?id=2fba629

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    make sure you type a “dash” between “font” and “size” (font-size) not (font size)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Oh, I left a space bw number and px…. got it correctly now.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    This how you code should look like “

    “Some text for you to make tiny!”> “ Remove this “ ; “ at the end of “ 10 px” due that its preventing your text to changing size.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    yay I’m in the conversation now ^_^

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    The same thing happened to me, I copied a code and it worked. But I wonder why this happens?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    awesome! thnks! awesome! thanks

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Here is the solution: You need to delete Everything (including your edited paragraph) between . Your code is probably correct, there is a bug in the lesson. Hope it worked!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    reset the code and rewrite everything, if there is any error rewrite that line again. This is my code:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    mine says it is 20px instead of 20px???

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I was having the same problem and was getting really frustrated. The dash between “font” and “size” did the trick! Thanks, guys! :)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Yes! The solution is the dash! haha thanks froilan

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    BIG THANKS! that dash did it. Very elusive indeed.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I zoomed the browser to 150%, it’s OK ! @LitLiao is Right! thx!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    For all people who don’t want to read it al this stuff cause there are a lot of comments. :D

    Please check your code again. Even spaces can sometimes mess it up. Maybe your zoom of your browser is not proper configurated fix this by holding the control button and your mousewheel or the plus or minus button.

    Also other people see the solution in deleting some parts well it is perfectly possible to write the code without deleting parts. :D If still everything fails see the code below. Or copy the code from the instructions and addapt the code :D

    Right code:

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    There is still a bug with this part.. I copied the “garromand referenced” and it worked! Try it!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Just change the h1 tag to p tag it works

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I have done the dash

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    make sure to use a COLON between the style and attribute.

    “font-size : 12px “

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I just deleted the , and it works.

    Answer 5163802fbff7863d5b0006c8

    39 votes

    Permalink

    i had the <p> before the <p style = "font-size: 10px">some text for you to make tiny!</p> and it didn’t work. i finally realized that there was no need for the <p> tag! thanks!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    32 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    OH MY GOD! Finally! Thank you!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I’m such an idiot oh my gosh

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you, you’re great

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Me too !

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Ah yes, relief at last! A very clear explanation, thank you!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years
    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thanks for the help

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    THANK YOU! I didn’t know the

    before the <p style was not needed.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks a lot Diana, i was very confused about this lesson!!! Concerning

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    wow nice course… they added an effing component to this lesson that wasnt even supposed to be there! and plus he said that it would work with the additional

    at the start but it sure as hell did… thanks by the way diana… i was in like a mind fuck

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    and also sorry bout the language… i just have a heavy deadline for learning the language

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Finalllyyyyy it worked after spending almost an hour scratching my head !

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    First, thank you Diana. Why don’t they make it this simple with the instructions? Even the ‘hint’ at FONT SIZE, 02/05 is a repeat of the instructions! More about what ‘not-to-do,’ rather ‘what-to-do’!The experts can code alright, but spectacularly fail with the explanation and instructions.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Bingo. Diana and anil hit the nail on the head here. For better pedagogy here don’t include the “what not to do” if it’s drastically different from the “what to do”, or else it isn’t helpful at all. Humans look to the mistakes to see what needs to be done. Spotting the mistake was more effort than it needed to be.

    A proper example should’ve included “what to do” as part of the initial code, like the ordered/unordered list lessons.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    This was so helpful!!!!!!! I did not understand the answer to the problems that the hint and instructions proposed. Without this I would have had no idea

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I had the exact same problem! Had to do like above (remove everything in the body) and THEN it worked.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Yep…..

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    it seems chrome made the min size to 12,when i type 10, it told me my font-size is 12. firefox can pass the exercise

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    big thanks! lesson wording needs rework, maybe? it’s the style attribute nested inside the “p” tag.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    The lesson wording is confusing. Up to this point in the lesson excercise NO where does it say drop the opening tag or even SHOW an example of how the nestle tag would look. In previous lessons their were examples. So, to assume that all of the sudden an opening tag will not be need is confusing for the user. No where else did we drop an opening tag so why think you would do this now!?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    THANK YOU!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    So I don’t mean to be a stickler but are you trying to tell me that <p style accounts for two openings in one commands and yet I still have to close style and paragraph with two separate commands? This seams totally confusing when the cardinal rule is to open and close everything?!?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Finally….. lol I guess this does make since, But it is very confusing when it did not mention it anywhere in the lesson, I’m sure they will correct soon. Thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m sure they just figured that is would be common sense

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks for the info. Yes, I was very confused that the lesson did not mention it. I hope they correct soon! Thanks once again!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Very confusing it took me forever to figure it out. I thought

    was a command by it self like the img tags, but it is combining two commands together. It is combining

    with style tag to get <p style, so you have to delete the auto

    tag the is set on the default lesson. Yes I agree, they don’t tell you it is two tags, they explain it like they do every other tag as independent and don’t mention that seemingly small detail which makes a HUGE difference. The worst part about it, it because it is a small but exponentially important detail, it is hard to even understand what you are doing wrong. I hope they fix it.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks for the explanation! It finally let me finish that section after removing the

    tags

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Yes, agree with y’all. It needs to be more clear that

    takes the place for

    , or at the very least,

    shouldn’t automatically pop up there. Unless this is one of those “debugging” lessions. Hmph.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    This solved my problem. Thanks

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    me too!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thanks:3

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Just change the h1 tag to p tag it works

    Answer 515b8cf249b7adf75500057e

    19 votes

    Permalink

    Well there is another post somewhere, where i found the answer. Try the code below - it worked for me. I think there is some kind of bug. Notice the <li is removed from some of the tag.

    Hope it helps:

    <!DOCTYPE html>                                                                          <html>
    <head>
        <title></title>
    </head>
    <body>
        <h1></h1>
         <ol>
         	 style="font-size 16px; font-family Garamond"></li>
         	 style="font-size 12px; font-family Bodoni"></li>
         	 style="font-size 10px; font-family futura"></li>
         </ol>
    </body>
    
    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    69 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Thanks it worked!!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Thanks this is the only thing that worked. I think there’s a bug somewhere.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Thank you! It helped a lot.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    at this point its obvious to me that either someone fucked with the site or we shouldnt be learning this from these people

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thank you!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thanx. workz!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    it works

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Yeah it works, but that’s still not correct, right? Is there a bug in the program?

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thanx!!!it works!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Just tried it, it worked for me too.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Lesson 4 Google Chrome error fix.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Just worked for me too

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you! I actually got the error “Oops, try again! Did you set the first paragraph’s font-size to 20px? It looks like it’s 20px.”

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Awesome man thanks

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks! it worked for me as well. There was no way to get rid of the error: “Oops, try again. It looks like your second ‘s font-size is 16px instead of 12px.” I had to delete all the opening tags fro

  • . Here’s my final code:
  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks 64 pts

    Daniel Takagi

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Daniel you are my life saver

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks works for me too.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks Daniel! But now what do i do to get the Ordered list? Will i just have to leave it out?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Legend. Thanks.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Why?! Just a bug?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank You !

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks so much for this!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks a ton!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    obrigado amigaooo

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you, but the display preview displays the entire code, is this correct?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I tried this code too, as I could not for the life of me figure out what I was doing wrong. Thank you! The code displayed on my screen as well.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Wow awesome. I glad I was able to help out. Ya there must be a bug in the system. With all the discussion in this Q&A I’m sure the admin have taken notice by now. surprised it’s still not fixed yet - but since this is a free site I guess you can expect these things to be fixed right away - limited resources and all.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Hello, in exercise 2 Font Size, the code worked correctly, however the question of the size of the source is giving you problems, when I change the default font size in Google Chrome for the first paragraph of 10px style works however others do not. How do I fix the error?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    a BIG thank you, it worked! I removed the <li tags. MERCI!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    It worked for me 2,, but still didn’t know wht wazzz D error!!!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Hi Everyone, I finally figured it out.! Try taking out the title, so leave it as so

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks Nick. Took me about 30 mins to figure out wtf was the problem!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks Nick you saved my day!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thanks Nick!! I would have never guessed that’s what it was. Although I don’t understand why we did that?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    It changed for me, but for some reason it won’t allow me to submit because “It looks like you changed some of the provided code”

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    This is so confusing. Obviously there’s a but. I keep getting the looks like your second paragraph’s font-size is 16px instead of 10px” message even when I change the font to 3 or 0 - redoing the coding on the first line fixed it, but not on the second

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I just tried Chrissy’s fix - removing the p tag before the second line. it fixed it, except everything is under the first line style. this is not helping me feel confident about css. at all.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Daniel Takagi - thank you so much! It finally worked!!!!!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    But it doesn’t work for me…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    copy pasted code above. doesn’t work any more.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    doesn’t work anymore

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    the code above is really unformatted. the only reason you get these problems are errors in your code (ie spacing was my problem)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Dude srry to tell u this does not work anymore but thanks for trying :3

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Obrigado!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Hi ! I found error ! This is a problem: Your Internet Browser ! I was work on Opera and this error has started, now when i use mozilla, this disappear

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I get this error in Firefox. :(

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    There is a bug

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    A big bug >:(

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    am on 8/16 been trying all the suggestions here, but just won’t work….so what does this mean…stuck forever and no way to continue? shame…it takes away the enthusiasm out of wanting to learn how to code… :(((

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Such is the life of a programmer! It will try your patience sometimes.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I posted everything as:

  • This item is big Garamond.
  • This item is medium Verdana.
  • This item is small Impact.
  • And it worked perfectly. I think the issue is too many quotes.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks Glenn…i tried your suggestion…didn’t work! :(‘ … i guess got to just forget this until they fix the bug. maybe i’ll try learn to code in another language…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    remove everything between worked for me.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    tim! ur a genius….hahahahaha!!! i removed everything tried and tried and tried and tried. nada. then i removed everything again - did nothing anymore and just clicked save and submit. it worked!!!! hahahahaha!!! is this a joke or what?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks alot GOD BLESS

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    The correct solution is download de fonts to your computer

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    why you do not put the

  • ?
  • Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Removing ‘<li’ caused and error. Telling me I changed some of the original code and to hit ‘reset code’.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    haha! I removed it also and right away- That’s Correct! Thanks Tim!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Just change the h1 tag to p tag it works

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    THANK YOU SO MUCH, YOU ARE THE SAVIOR OF MY LIFE. WITHOUT YOU I CANNOT LIVE.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    why is that happening? I just started and got this problem, do we acctually learn something from that? Tim gave us an aswer but, i didnt learn nothing from it.. but anyway.. .thanks Tim! :D

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    opps not working :/

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    this is the only thing that allowed me to proceed from the font size error messages.

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    This worked for me! Thanks, buddy!

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    very frustrating, I keep getting an error mesage when I know I’m right.

    Answer 51ae0c67122577d356003bad

    17 votes

    Permalink

    I keep getting the following error for this lesson:

    “Oops, try again! It looks like your second

  • ‘s font-size is 16px instead of 12px.”
  • This is the code I have:

    <html>
        <head>
            <title>Loving the font changes</title>
        </head>
        <body>
            <h1>Big title</h1>
             <ol>
             	<li style="font-size 16px; font-family: Garamond">This item is big Garamond.</li>
             	<li style="font-size 12px; font-family Verdana">This item is medium Verdana.</li>
             	<li style="font-size 10px; font-family: Impact">This item is small Impact.</li>
             </ol>
        </body>
    </html>
    

    Any help is appreciated. Thanks!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    55 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    That is strange. I’m having the same problem. >_>

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I don’t know have you noticed but you don’t have : between font-family and Verdana. I’m pretty sure it won’t solve the problem thought, but still. I’ve the same problem and would be nice if someone would make a correct version out of this -.-

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Try this….

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    You need colon’s after font-size

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you Xlayadre. That worked. It kept telling me I had the wrong size font.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thx, Xlayadre!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I can not get it to submit. I had the same issue. Then when I reset and submitted, the “save and submit” button did not show but a blue button with a gear image on it.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Ditto here. Moving on to the next lesson. There must be a bug

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I did not give up. Re did it with the idea that we will get it to recognize that it is 16px and then convert with a 10px and it worked. This is what I did to fix the bug loop: 

  • This item is medium Verdana.
  • This item is small Impact.
  •  You will need to do this to the third line as well because the bug will loop that too. Good Luck

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    This worked thanks!!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I am having this same problem, but I don’t understand completely how to fix it. Help?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Brad D use: 

  • This item is medium Verdana.
  • This item is small Impact.
  • 

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Ok, thanks, got it to work.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Badly, need a fix to get the loving the change font exercise change…

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    @ djohndoe: it didn’t work for me… keep recieving the exact same message. I’ve been trying for a day, almost :(

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    What have you placed exactly. So I can understand what you are doing.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Ana try the following:

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Make sure you have “;” at the end of each “px” to close out the px for that line. Good luck.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    There is no bug after all. Found the solution:

  • This item is big Garamond.
  • This item is medium Verdana.
  • This item is small Impact.
  • Profile image of anonymous
    Submitted by anonymous
    over 11 years

    @I feel hopeless ,there must be a bug ,help???I have tried all you said and it doesn’t work…..

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Sometimes closing and refreshing the browser page or using another browser works. It seems to me that Chrome works best for most exercises.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks Ana, that finally worked for me!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thankx xlayadre.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    this worked for me :

    1. This item is big Garamond.
    2. This item is medium Verdana.
    3. This item is small Impact.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    “font-size: 12pm” ???

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I have the same problem:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    That’s exactly what I did and exactly what I get!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    There are bugs all throughout the system. on lesson 12 of HTML basicsIII, It asked to add a

    tag and insert a box with the
    . It would not work no matter what zoom or reset I did. The only way it worked was to carriage the original line above it down and insert my new code on the line above the supposed line where I was asked to insert the code. Then it worked…nothing typed any differently because I copied and pasted it all…definitely a bug in the system with the fonts, px sizes.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    make the body tag clean, then it works !!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    You are missing a few : thats where I went wrong I had font-size=16px instead of font-size: 16px

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    i have exactly the same problem. i’ve got the code right cuz i see that the preview is showing the fonts correctly but i keep getting the same message the the 2nd paragraph has 16px and not 12px. i’ve tried all the tricks i’ve seen here but nothing works. am stuck…anybody there who could help?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Same problem NO HELP. Who do you have to FUCK to be able to move on?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    SAME pinch friendsssss …………………

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Also stuck on this. Code is correct. What a load.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    the same bug

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    YOur Code Should look like this

  • This item is big Garamond.
  • This item is medium Verdana.
  • This item is small Impact.
  • 1• You miss “font-size :” without the colon it won’t able to change the font size. its common people miss stuff, me too some time miss stuff

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Mohamed is correct, I was getting the same error and couldn’t see my mistake, thanks for that.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I just reset,save,and right.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    i reset my chrome the smallest font size to 10pt, and then i passed it…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I copied this code and am still getting the you must capitalize the G in Garamond error message

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    im still stuck with this problem. Any other suggestions?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I was missing the : after font-size as well. Solved my problem!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    mine DOES read like that it won’t recognize a zero or capital letters

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m stuck at this place, and removing all tags between the

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Yikes. Finally got it to work, by zooming in to make browser font huge; after getting an error, I reset browser to actual size, hot save and submit again and .. it took! Prior to that, resetting to Actual Size did nothing.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I had the same problem. I used xlayadre’s code and it worked. its a bad bug.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years
    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    thanks!I found the answer in comment

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thank you!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    You are forgetting the colon between font-size and 12px.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Make sure to have a colon between pixel size and font-size that way the program can read it.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Don’t forget about the colons

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Just change the h1 tag to p tag it works

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thank you Mohamed! The hardest part for me is learning the syntax but it’s clicking now. I appreciate your detailed answer and example. Thank you for sharing your knowledge.

    Answer 515e617c97c4e552ed001379

    12 votes

    Permalink

    Hey Eric, Here is my full code if you need it.

     <!DOCTYPE html>
     <html>
         <head>
             <title>Changing the colors!</title>
         </head>
         <body>
                <h1 style="color:green;font-size:16px">Big Heading</h1>
                    <p style="color:violet">A giant bear and a little duck were friends.</p>
                    <p style="color:red;font-size:10px">But the bear got hungry and ate the duck.</p>
    
         </body>
    
    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    15 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thanks man, it works

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    just skip it

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    so people dont wanna skip it :P

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I return to the font size lesson, press save & submit code, then on the font color lesson I wrote again everything and I’m way to go to next lesson.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank you

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I cut and pasted the above code and it worked for me! I am frustrated, aggravated, and relieved.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I had the exact same code but for some reason copying and pasting that in worked, weird bug

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Ahh forgot the dash between font and size. Thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks this helped with the font size exercise, but still getting an error message for the 40px font size saying it looks like 16 (and to be fair it does). Tried the CTRL-0 buttons and nothing, so how else can I reset my font sizes?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Ok, found the error - it was a human typo :)

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Wow, dude I forgot to close the

    tags!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Just change the h1 tag to p tag it works

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thnx

    Answer 516648cc1413805aa7000719

    12 votes

    Permalink

    I have a problem with this

    Oops, try again! Did you set the first paragraph’s font-size to 10px? It looks like it’s 12px. (If you’re getting a weird decimal font size, check the Hint.):

    i tried reseting the browser,but it’s can’t go on

    my code is here

    Some text for you to make tiny!

    Some text for you to make normal size!

    Some text for you to make super big!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    30 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Hi, I was having exactly the same problem. In Chrome (Settings –> advanced –> customize fonts) I found that the minimum font size was set to 12px. When I changed it to 10px, the code was accepted.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thank you!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thank you!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    @Nitanz thanks! that worked for me :)

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thank you! I think it will be written in the hint.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Same problem in safari. How would I fix this?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thank you @Nitanz

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    thanks, it works for me.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks a lot, really helps.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Oops, try again! It looks like your first

  • ‘s font-size is 16px instead of 16px
  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you, Nitanz!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I was having a similar problem, but mine was with the larger text. There isn’t a maximum size in Chrome’s settings. I ended up copying and pasting the code from my middle section and replacing the unresponsive code. I double checked it out several different times… no noticeable difference. This worked, though!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    @Nitanz,thank you very much!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    @Nitanz cool,that the problem.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I have no idea to fix this problem.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    if you still cant fix it try

    some text for you to make tiny

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    zoom to the biggest and this will be solved,just have a try

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    i typed the code exactly like this:

    Some text for you to make tiny!

    the key seemed to be the space between the end of the text and the .
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    @Nitanz Thank you a lot !

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    ZOOM TO BIGGEST! it’s works. to @Samuel1103: Thanks a lot. The css property “font-size” here is a critical bug …

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thank you!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I am still having trouble for whenever I change the font size on my chrome setting its finding an error and I get this message:

    Oops, try again! Did you set the third paragraph’s font-size to 40px? It looks like it’s 20px. (If you’re getting a weird decimal font size, check the Hint.)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thanks @samuel1103 …But this problem is really strange!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    You might have to goto your browser settings and uncheck any boxes that say never use font less than.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    same problem here

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    same problem here Thank u!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I use Chrome and had to add the extension for advanced font settings. The minimum font is 11 so if you use Google Chrome you have to change it- I just put it at 6 (the smallest option). Thanks Tony!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Set the minimum font for 10px

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Just change the h1 tag to p tag it works

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    @ginalowen Thank you!

    Answer 515b75d9cd7df6e3e40001f2

    8 votes

    Permalink

    ok, this is just ridiculous. I got “Oops, try again! It looks like your first

  • ‘s font-size is 16px instead of 16px”
  • ???????

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    25 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Mine said 16 instead of 12, even though it was 12…

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Ok, to fix this; youu need to take away the tag before the code. I know it is not right, but the system accepts it as correct

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I inspected the element in the full screen and it says everything is correct.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Which tag gets removed?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    yes this happened to me also. what the heck do I do?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    maybe you can try check the Ctrl and + to enlarge your browser

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    yip I got the same…weird???

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Oops, try again! It looks like your second

  • ‘s font-size is 16px instead of 12px.
  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Still no answer for this !

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years
    Try this <li style="font-size:16px; font-family:Garamond"></li>
                             <li  style="font-size:12px; font-family:Verdana"></li>
         <li style="font-size:10px; font-family:Impact"></li>
    
    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    ^this worked

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    whats wrong in these colour is not getting changed freind

    A truly spectacular paragraph!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Try “color” ansimuskan.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    If this helps, I’ve been trying this <p style=”10: 10px” I just noticed that once I did <p style=”font-size: 10px” everything worked. You need to type “font-size” and not put 10. LOL hope that helps anyone with that error.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I just changed the

    tag to

    tag and it accepted it. Just removing the

    tag all together wasn’t good enough for me cause it showed the code.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    WHEN the fuck are they gonna fix all these f!=)(!cking BUGGGSSS ?!?!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I have this problem, too. I solved this problem by zoom the web browser and reset the browser font setting, for the default smallest font-size of the browser is 12px.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank you very much,Haodong!I solved my problem by your way.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Try setting everything like this:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Haodong, how exactly do you “zoom the web browser and reset the browser font setting”?…….I’m having problem with this exercise that may be helped by doing what you say to do, but I do not know how to do as you say…..

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Hey Mark, In Chrome click on customize and control Google Chrome in the upper right corner, click on settings, in the search box… type ‘fonts’, click customize fonts and move the Standard font bar to about size 12. I think this is what others have meant. Hope it helps.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    i have reset the browser zoom but its still giving me the same error message Oops, try again! It looks like your third

  • ‘s font-size is 16px instead of 10px.”
  • Profile image of anonymous
    Submitted by anonymous
    over 11 years

    omg tim mullins i use chrome too, did what you suggested and it worked!!! Thanks so much #dancing

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I change the chrome settings and now got this:

    Oops, try again! Did you set the third paragraph’s font-size to 40px? It looks like it’s 20px. (If you’re getting a weird decimal font size, check the Hint.)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Hel00055’s suggestion worked for me. But how the hell should I get to this weird solution on my own?!

    Answer 51684bedb9335199d20028f5

    8 votes

    Permalink

    Guys DON’T FORGET to add “hyphen” between font and size like this “font-size”.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    10 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    i was stucked by 10 minutes trying to change everything when i’m realized that “font size” hasn’t the “-“ :( such a waste of time

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you. I tried several of the other suggestions and nothing worked. Then I noticed this and checked my code. Sure enough, no hyphen. Such a simple mistake. Too bad the error message is no help whatsoever.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    you’re welcome

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    lol. did the same thing. I copied and pasted the example and was like “why the heck did that work and not mine?” doh!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thank you…… i just went through all the suggestions but this is the actual solution i do want

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    thank you! finally fixed my problem, and can now move to the next lesson. Sp error before (ie no hyphen between font & size)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    In the immortal words of Homer Simpson: DOH!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    This solved the problem of the test thinking you have 16px font when you have 12px font. I had “size:12px” instead of “font-size:12px”. Thank you.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    OMG this was totally the problem. I didn’t even see the hyphen! Thanks for pointing this out!

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    Thx! This helped, forgot the “hyphen”. “font size: 12px” instead of “font-size:12px”. Now it works.

    Answer 5221fa6ef10c60867200110e

    6 votes

    Permalink

    aha, finally, I got through. Chrome, need to customize the font-size of explorer. on the right-top of chrome, click the menu and select set , then unfold the advances, customize the font-size of web content, Standard font-size for 12px, minx font-size for 10px. then submit. My codes below

    <!DOCTYPE html>
    <html>
        <head>
            <title>Loving the font changes</title>
        </head>
        <body>
            <h1>Big title</h1>
             <ol>
             	<li style="font-family: Garamond; font-size:16px">This item is big Garamond.</li>
             	<li style="font-family: Verdana; font-size:12px">This item is medium Verdana.</li>
             	<li style="font-family: Impact; font-size:10px">This item is small Impact.</li>
             </ol>
        </body>
    </html>
    
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    16 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I think the reason of font-size error is that Chrome’s default minx font-size is 12px, therefor the excersizes ask for 10px setting is really unconvienient.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    great it worked for me thx dude

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Insanely Great!!!!!! I’m afraid this is the ultimate solution for everyone who use Chrome!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I thank you!! I just copied and pasted what you wrote above. It worked. Even though, I had “typed” everything the same and came up with the “Oops, try again! It looks like your second ‘s font-size is 16px instead of 12px.” So the solution for me was to copy and paste the above!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Yeah! Really cool. I came up with this error too. Is there an add on or something?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Altered my Chrome settings for minimum font size to 10px and it worked, yay! Thanks :)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank you so much it took two days to figure this out

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks man, this fixed the issues for me.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Oh,thank you so much! this completley fixed it!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Is there a similar fix in Firefox?

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank you Thank you Thank you Thank you Thank you Thank you Thank you you are a gem, Ive been stuck for two weeks, changing font, colon, space, hyphen, order, reload, different browser, asked questions, no answers, Thank you Thank you Thank you

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Really really thanks!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thank you so much:)

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thanks~finally success !!!!!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    So this problem has been going on for months and the only solution Codecademy has offered is “make sure you’re not nesting your tags improperly”. That’s NOT THE PROBLEM, folks. These continual font problems make the HTML lessons useless.

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    It’s works for me.

    Answer 515cbd66e7d2c1b76d000192

    5 votes

    Permalink

    My code says “p style = “font size: 20px” but when i press submit it says “Oops, try again! Did you set the second paragraph’s font-size to 20px? It looks like it’s 16px. (If you’re getting a weird decimal font size, check the Hint.)” Why??????????

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    19 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I think there is a problem with the way they coded the exercises, or maybe something happened to the site. There are too many size problems to be a single accident.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    The same thing happened to me. Is there a way to fix this? I would very much like to finish this damn course!!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Same thing here…I’ve tried removing the tag as suggested above. No go. Ugh.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I cant pass the lesson because of this glitch. :(

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Same thing is happening to me. Would love a fix!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I am getting the same error.. Can someone please suggest a solution.. :(

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I’m having the same problem when are you people going to fix this bug? I can’t even move on to the next lesson because of this!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I am having the same issue. Please assist.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Same.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Exact same problem, has anyone found a way around it? Ive ctrl 0 / cmd 0’d to reset zoom as hint suggests and it’s just doing nothing!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    try this i used google chrome go to settings and then advanced text size customize size 8 text courier new standard text size 40 times new roman

    hope this helps

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thank you martin1991. I went into the settings and adjusted the standard font to where it finally passed! LIFE SAVER

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I had this same problem. Fixed it with a hyphen between font and size. :) “font size” should be “font-size”.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks dennerj that worked for me.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    @codeboy1000 i have the exact same problem.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    You would need to put numbers on the paragraphs like

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    The <p1 style, <p2 style, worked for me…I had tried all the other “fixes

    Profile image of anonymous
    Submitted by anonymous
    over 11 years
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks, this ^ got me through

    Answer 51c7457d7c82cab06000048b

    5 votes

    Permalink

    ctrl + 0 doesn’t work for me, but i use ctrl + mouse scroll up to make the font super huge, then it congratulates me.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    3 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    me2,reset code

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    it finally works!thanks!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    both methods doesn’t work for me!

    Answer 51e0f8fc282ae3c5510025ba

    4 votes

    Permalink

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    this worked for me….i take off the “

    “ because the atribut of size already have one opening <p style…… and than you close it with ex:

    Answer 5166db962b4eb7e88d00499f

    3 votes

    Permalink

    wow, had the same problem w/ the 10px vs 12px error message. Turns out I had my Safari –>Preferences–>Advanced–>Universal Access font set to 12. When I changed it to 10, then press Submit in codecademy, it passed!!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    9 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    tks

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Yes,i made it in chrome. It`s the same problem.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I did the same thing, I went into Chrome’s setting and fixed the smallest font setting to 10px, and it works. Chrome setting>Advanced Setting>Font size> Customize fonts> Smallest font setting to 10px.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Exactly the right answer!THX!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    HA!THx!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I was stuck on this as well and this solution fixed it, thanks fattire99

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thank you, fattire99! That was the problem.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Awesome - thanks!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Thanks! This solved my problem. Had preferences set to 14. Switching it to 10 worked and was able to submit and go to next lesson.

    Answer 515df070c2fbefc060000969

    2 votes

    Permalink

    Hi all,

    Please provide the exact HTML you’re using (example below) to help expedite assistance.

    <!DOCTYPE html>
    <html>
      <head>
         <title>Example</title>
      </head>
      <body>
        <p>Some sample HTML!</p>
      </body>
    </html>
    

    Thanks!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    3 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Can you add a note where if your in chrome you have to do what nitanz said “Hi, I was having exactly the same problem. In Chrome (Settings –> advanced –> customize fonts) I found that the minimum font size was set to 12px. When I changed it to 10px, the code was accepted.”

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Eric- why does the following code tell receive an “Oops” message that the 2nd <li is 16 instead of 12 when it’s obviously entered as 12:

    Answer 51976c645d028c3743002f45

    2 votes

    Permalink

    On this section 02/05 of html using the style attribute

    Despite the advice about not nesting incorrectly, I didn’t understand at first that the style attribute was added to the p-tag and not a seperate tag. May I suggest that it might make it easier for some people (like me) if you explain that the style attribute ie style = “font-size: 12px” is included in the original p-tag. I’m sure most people might realise this straight away but I thought it was added as another tag - rather foolish of me now I come to think about it but could cause a newbie like me some confusion Just a thought

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Answer 519ab2de4d94cfff510001d1

    2 votes

    Permalink

    I just started with lesson “Styling the Font!”, and I’m having a big issue. It keeps giving me a “Oops, try again!…check the Hint)” error. Here is my code: `

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    9 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Hey Christopher, I have code posted above that might help you out.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    you should add ; after 10px like this:

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    NOTHING IS WORKING FOR ME!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    try leaving the body empty, like this …

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    you can’t leave spaces after the equal!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Finally, I removed everything between the body tags and got That’s Correct!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    the program is wrong. leave empty between the body tags

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Yes! Julee’s answer is right.Just leave empty between the body tags

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    hi Christopher,your code is right.You just reset your browser’s zoom to >=150% by pressing “Ctrl +”, then hit the “Save & Submit code” and it will work.My browser is chrome.

    Answer 51bb6496631fe9b9630004cd

    2 votes

    Permalink

    Maybe it would be a good idea to update the lesson to teach us how to actually nest it correctly because telling me whats wrong doesn’t teach whats right. DONT STEAL CANDY FROM BABIES… so i can steal it from adults? Thats what your giving me I DONT GET IT TEACH BETTER OR GIVE US A BETTER TEACHER FOR THE COURSE. sorry for raging because codeacademy is stomping on all my dreams and my schedule too. Thank you.. freaking lols.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    5 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I agree 100%. I’m already doing it wrong (I guess) and the only examples and hints given are how to do it wrong. I don’t understand why there isn’t an example of how to correctly nest.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Hey guys; I can understand your frustration. I went through the same lesson and finally passed! As for demanding better teachers… remember this is free stuff. Some things I wish that they would explain better, but you can’t always get what you want. I am glad to get what I get! lol

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I really just mean that the course gives you one teacher.. you get used to him… you understand him.. you pass the unit jump into another he’s gone and heres a new guy you don’t understand. I’ve had teachers fired before, but going through multiple teachers and teaching styles is too difficult to do every other unit. Not to meantion free doesn’t mean bad quality. Youtube’s free to watch yet theres lots of good stuff there.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    This is free. Why are you complaining? It has its flaws but the general layout is really easy to understand. Remember: What you can’t find here is sure somewhere else out there in the inter-webs!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Free stuff doesnt have to suck her’s my best tip… Screw it

    Answer 51e2b5dd9c4e9de8430035d6

    2 votes

    Permalink

    Maybe I have a same problem When I learned Font size,I input 10px in the first paragraph but it always shows it’s 12px or 16px. I have tried many ways.I hope someone can help me. Here is my code

    body
        p style="font_size:10px"> Some text for you to make tiny! </p
        p style="font-size:20px"> Some text for you to make normal size!</p
    <p style="font-size:40px"> Some text for you to make super big!</p
    </body
    

    <

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    3 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    just a punctuation ! it works,shock!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    @宝石酱 Thank you very much :)

    Answer 515366240b1efc5e5e000043

    1 vote

    Permalink

    What if you’re getting an error saying the color is wrong?

    https://ustream.box.com/shared/static/ooh7eggb7x6o4olsh2bc.png

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    11 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    It looks like “style” is misspelled on lines 7 & 8, which may be confusing the SCT. Could you let me know if correcting that fixes it? Thanks! — EW

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Sorry about that - but it did not help. https://ustream.box.com/shared/static/yxfo11civ8s8ejz7169j.png additionally I had to change the heading to h2 otherwise when I use H1 it doesnt acknowledge the green

    Profile image of anonymous
    Submitted by anonymous
    about 12 years
    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I have a similar problem on the font-family exercise. I’ve rechecked all the entries and they are correct, but the tutorial keeps telling me the second line size is wrong and does not register any of the changes in the view window. I’ve insert the style info into other exercises and it worked fine. The program will not show that as “Complete” only as “Started”.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I have the same issue as AOGutierrez: I’m getting an error in the font family exercise. The instructions says to make the second li 12px which i have but the error says I have input 16px - which i have not. I even changed all the font-sizes to 12px but it is still telling me the second li is 16px - fix please :)

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Same thing!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Same problem here. Have tried everything and the only one that worked is the remove the code in between the body fix.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thank youuuuu

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    thanks, it works!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks,it works finally!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Your a Genius bro, that explanation couldn’t have been broken down any simpler.

    Answer 51697d397cd25fddf100093b

    1 vote

    Permalink

    I had this to begin with.

        <p style = "font-size: 10 px"> Some text for you to make tiny! </p>
    

    etc.

    then I took out the space between “10” and “px”. It worked after that.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Ok, tentei esse código e comigo deu certo. Obrigado.

    Answer 519312c9bc4bbfb594001736

    1 vote

    Permalink

    My problem was fixed like this:

    <p style = "font-size: 10 px"> Some text for you to make tiny! </p>
    

    Many of us forget to add the “-“ between font and size.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    2 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    i somehow had forgotten i needed a size with my font. thank you! I was starting to get frustrated!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    i’ve got it…..i thought both will be separate like

    Some text for you to make tiny!

    way……

    Answer 51b25f1d9c4e9d0c870019ef

    1 vote

    Permalink

    If you are working on a Mac with safari as the browser, go to preferences, advanced, universal access —– and make sure that the box which states that fonts less than 10 (or another value) is not checked

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    2 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    This also worked on a PC. Thanks.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    That worked, thanks!

    Answer 51c339ac282ae3799000004c

    1 vote

    Permalink

    I am on the first lesson with font size. I have done every troubleshoot listed in this thread. My code is absolutely correct but my preview does not reflect the code I have inserted. Instead, all my font is 10px, which is the floor I set it at within Chrome’s settings. Does anyone have any other ideas how to get my browser to work with this? It’s not my tags or syntax for the code. Thank you.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Answer 51cda877282ae38a5f019833

    1 vote

    Permalink

    I have tried this code already and all it did was make it dissapear on the preview codecademy REALLY needs to fix this problem like now!!!!!!!!!!!!!!!!!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    agreed

    Answer 51e434859c4e9d87f700b929

    1 vote

    Permalink

    I have a same problem.Finally, I found that my answer is right.But my chome browser has a setting, the minimium font size is 12, so it complaint this messages. You can check your enviroment.

    the error messages is “Oops, try again! It looks like your third ‘s font-size is 12px instead of 10px.”

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Answer 521afe82548c359740000a36

    1 vote

    Permalink

    I just put a one after the <p> tag so like this<p1> and I passed!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I tried that it didn’t work.

    Answer 522ba59babf821e243003dcf

    1 vote

    Permalink

    Try re-typing the code. I was just reading this and was having trouble with the sizes. Also try adding a couple of spaces in between this : and the number you are using.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 524a4fbcf10c60b8f1001737

    1 vote

    Permalink

    I nested mine correctly, and it keeps telling me “whoops! did you use 10px in your first paragraph? it looks like 12px…” (or something like that). I don’t know where the frick 12px came from, but I definitely have the tags correctly nested and I am using the right font-sizes!

    it says to use 10px, 20px, and 40px and those are the three font-sizes I used for the three paragraphs, so wtf man.

    pretty please help me.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    3 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    mine is similiar except it says 16px. I nested mine right also and tried everything. But yet it says 16px.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    same here i tried changing the chrome settings and that didnt work either

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Answer 5270f98aabf821fec30030d1

    1 vote

    Permalink

    on Google chrome go to settings open advanced settings under web content go to font size select the customise fonts option and change it to size 10 this solves the problem

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 5298d705f10c603105009808

    1 vote

    Permalink

    can i get the answer i get it but won’t let me pass??????????

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Answer 529b87d3abf8216074012726

    1 vote

    Permalink

    Hey, I think my code has something wrong with it but I don’t know what. It looks just how it should but it won’t pass through here it is:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52a527fc548c357726000784

    1 vote

    Permalink

    I’d recommend the author revise this lesson to provide at least one solid example of using the code correctly before testing on it. I found the answer here, but even the “hint” doesn’t tell us correct syntax. Just a thought…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52bda4e1282ae34452001ec2

    1 vote

    Permalink

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    3 comments

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    You are right!

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    if u replace the “10px” with “10 px”, it will work

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    for chrome

    Answer 534e17649c4e9d3e2c0007df

    1 vote

    Permalink

    In the settings of Chrome, I found there’s a Minimum Font to be set 12px. OMG, that’s why I can not pass the 10px to this excersize! I changed the Minimum Font to be 10px. Succeed!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 51565f729737c3c1c80008ce

    0 votes

    Permalink

    Stupid question but what is an “SCT”?

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Software Certification Test/Script Correspondence Testing… no clue..

    Answer 515a97edcea605ec9e000edb

    0 votes

    Permalink

    Some text for you to make tiny!

    Can you guys please tell me what is wrong whit my code, i can't fiigure it out. Thanks!

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    2 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    What is your code?

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    I might be able to help (evan though I have a problem with “Some text for you to make normal size

    Answer 515b6f9501ab254f3700010e

    0 votes

    Permalink

    On styling the font, it says my second

  • is 16, not 12 But it is 12, not 16 I tried both:
  • This item is medium Bodoni.
  • and <li style=”font-family:Bodoni; size:12px”>This item is medium Bodoni. How do I fix this?

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    4 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Obviously the top item works, it doesnt show the code

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Neither works in the lesson though

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    it should be like this: <li style=”font-family: bondoni; font-size: 12px;”

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Fatma, you are my freaking hero.

    Answer 515ef80665142a7c0900098b

    0 votes

    Permalink

    Okay, it shows on the side box that the font has changed color. The course keeps saying to check if I have changed the h1 to green. And I did, AND IT KEEPS SAYING THE SAME THING.

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Answer 516db1bfd220f29b590013b0

    0 votes

    Permalink

    Hey Eric,

    Do you think you could give me the full page code because its not working. Can anyone give me the full page code? I need help.:(

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    2 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Hey Nathan,

      I have the full page code in the forum above. If that don't work, feel free to try my alternative method. (also posted above)
    
    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    Thank you tim. It worked!

    Answer 517987145d92a64f680007e8

    0 votes

    Permalink

    Lesson 4 error with Google Chrome still exists. Tried the “remove

  • tag” and it worked.
  • Profile image of anonymous
    Submitted by anonymous
    about 12 years

    4 comments

    Profile image of anonymous
    Submitted by anonymous
    about 12 years

    also I have this error… how did you fix it?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    which tags ? Can u paste ur corrected code here ??

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I think he means removing everything in the body tags like this:

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Then How would it work ?

    Answer 5180cae193184f564b00034c

    0 votes

    Permalink

    Guys, if you are using Google Chrome and still have the problem of the font size, try to use CTRL + mouse wheel to make the font-size bigger enough(may need to repeat several times to make it pass)

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    2 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    and then,it becomes too big or too small…still cannot pass.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    It worked for me! I scrolled several times to make font sizes right.

    Answer 51896d09113400c9ea0000c9

    0 votes

    Permalink

    Thank You!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Answer 518b6c95ad8b5d255c000934

    0 votes

    Permalink

    text

    This is correct, but I'm confused.when I set up 10,came out "It looks like it's 12px. (If you're getting a weird decimal font size, check the Hint.)" I need help.
    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    Because your browser default settings is 12px, you just reset your browser zoom >=150% by pressing “ctrl +”.

    Answer 51968e353c304dd974000040

    0 votes

    Permalink

    Great post!

    A note stating “style tags are placed inside the opening tag and are not separate” would have clarified the subject and made it less awkward. At first I thought they were separate opening and closing tags added to the paragraph tag.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Answer 519beafa9ab772e393006a86

    0 votes

    Permalink

    i had a problem with lesson 4 please help me it shows me a error “Oops, try again! Did you remember to change the first

  • to the font Garamond? Make sure to capitalize Garamond!” here is my code
  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    7 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Can’t see your code

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years
    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    it works…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m having the same issue.

  • This item is big Garamond.
  • This item is medium Verdana.
  • This item is small Impact.
  • Profile image of anonymous
    Submitted by anonymous
    over 11 years

    it looks right but I get the same message “Oops, try again! Did you remember to change the first to the font Garamond? Make sure to capitalize Garamond!”

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I am getting same error as mentioned above …How to I proceed further!!!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Answer 51b89cbd8c1ccc5cbe000831

    0 votes

    Permalink

    test

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    like your pic!

    Answer 51c08b917c82cacdb001045b

    0 votes

    Permalink

    I keep geting notifications of postings to this thread, have tried to stop them by unchecking the “notify me….” below and then leaving page but obviously am doing it right, so I am going to try again.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Answer 51c7b0d452f863a5e2007251

    0 votes

    Permalink

    ERRR!!! I keep doing the right size font but it keeps saying “oops your second

  • is a 16px change it to a 12px When I have already done it!!!!!!!GRRRR please help!
  • Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    8 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Sandy: Try Ctrl + mouse scroll up or down to change the browsers size. Their are other post about this above.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    I have done it already several times and none of this has helped so far.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    This is the same with all of the levels I have tried

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    could be your browser. I have switched from firefox to chrome with the same code and it worked in a different browser.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    just take all the text away inbetween the body tags and you will pass

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks everyone I finally past it! :D

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Thanks @Demian, it worked!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Answer 51d23e1352f86308ac004435

    0 votes

    Permalink

    remeber change the zoom of your browser!!

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Answer 51d442418c1ccc6e090003d8

    0 votes

    Permalink

    Please, help me with 4 lesson. I am written that “Oops, try again! It looks like your second

  • ‘s font-size is 16px instead of 12px. “
  • the zoom don’t help

    My code:

    !DOCTYPE html html head title Loving the font changes /title /head body h1 Big title /h1 ol li p style = “font-size: 16px; font-family:big Garamond”>This item is big Garamond. /p /li li p style = “font-size: 12px; font-family: Verdana”>This item is medium Verdana. /p /li li p style = “font-size: 10px; font-family:Impact”>This item is small Impact. /p /li /ol /body /html

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Answer 51dce48652f863b7bf0003b1

    0 votes

    Permalink

    {Reset Code and copy the the text below and paste it. e.g <*ol> code below <*/ol>}

         	<li style="font-family: Garamond; font-size:16px;font-size: 16px"> This item is medium Verdana.</li> 
         	<li style="font-family: Verdana; font-siz:16px; font-size: 12px"> This item is small Impact.</li>
         	<li style="font-family: Impact; font-siz:16px; font-size: 10px"> This item is small Impact.</li>
    
    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    2 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    oh thanks!! this code worked perfectly!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    code worked!

    Answer 51e204349c4e9dd96d001063

    0 votes

    Permalink

    I ran into that problem, was saying font size was 16 instead of 12 when i put down 12. So i close out of chrome reopen where i was and hit ctrl 0 and retyped the solution and it worked for me. Hope this helps cheers

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    Answer 51e8667c282ae36c36000990

    0 votes

    Permalink

    this is what i have and i cant figure out what i am doing wrong.

    <li style="font-family:Garamond; font-size 16px">This item is big Garamond.</li>
         	<li style="font-family:Verdana; font-size 12px">This item is medium Verdana.</li>
         	<li style="font-family:Impact; font-size 10px">This item is small Impact.</li>
    

    i got this weard error message.

    “Oops, try again! It looks like your second

  • ‘s font-size is 16px instead of 12px.”
  • but i can plainly see that its a 12. anybody have any suggestions?? thanks

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    3 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    You need a colon between the attribute name “font-size” and the value “16px” (or 12px or 10px). So …

  • , etc
  • Profile image of anonymous
    Submitted by anonymous
    over 11 years

    you need a colon after font size

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Answer 51ef41638c1ccc8b4a0015d6

    0 votes

    Permalink

    I’ve done everything right but I get the “oops you did 16px instead of 20px” here is a pic:

    alt text

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    4 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    put a colon after each font-size:

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    plz

    cuting

    Profile image of anonymous
    Submitted by anonymous
    over 11 years
    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    this the correct coding dude see properly do

    Answer 51f82208631fe9a8d4000895

    0 votes

    Permalink

    There are definite sizing issues with Chrome I can’t get past my stage 2 please help urgently

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    try to copy paste it from the example:

    My mistage was that I type front instead of font. only figured out after long time…

    Answer 51f9ec57abf82132bb000d21

    0 votes

    Permalink

    In the second exercise,I think that the confusion comes from mentioning the problems of nesting. This wording is leading people to try and nest a second paragraph tag in each line when they normally would have correctly just edited the first tag. I know that’s the mistake I made. My suggestion for the lesson would be to point out that an attribute is part of a logical argument or tag not an additional argument or tag.

    However, even though learning syntax is confusing, I have found that doing something wrong and banging your head extensively for a period of time is one of the best ways to learn even though it hurts a bit.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52025f72548c359ae1002107

    0 votes

    Permalink

    I deleted everything between the body tags. I’m not sure why it went through but it did. You have us change color and font size, but the only way to pass that area is to not do anything???? A bit strange, isn’t it? Please fix this bug.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52026729f10c609870000187

    0 votes

    Permalink

    i solved this problem~! it’s a big bug! try this:

    zoom in…and save&submit code…zoom in and save..until be successful! then put ctrl+0 or cmd+o back to normal size.

    one thing to note… ‘garamond’ is wrong, ‘Garamond’ is right… ‘veredana’ is wrong, ‘Veredana’ is right… Capitalize first letter!

    Hope I can help you. sorry for my poor English.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52032f7380ff336b3f00085b

    0 votes

    Permalink

    Please help me….

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52097ef480ff33ec5a000c52

    0 votes

    Permalink

    This was extremely helpful. Thanks everyone.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 520bb0c580ff33b25f000220

    0 votes

    Permalink

    Wow. There are a lot of comments. This is probably a good thing, considering that there are plenty of people (including me a lot of times) that don’t understand the code of things.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 520efc0bf10c60b6cf008463

    0 votes

    Permalink

    Whoever is using Chrome might want to check their custom font settings. The minimum font size must, obviously, be 10 or smaller.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52163e67548c35df6d004166

    0 votes

    Permalink

    this is what i wrote and it says you need to change it from 16px to 16px and i fixed my screen size and checked my tags but im confused why I cant advance.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    2 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    oh i fixed mine…uhh i just pressed shift+command+0 than clicked submit

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    oh… nvm i was on the wrong page… ughhh this is annoying. please fix this problem

    Answer 5216cd57548c3572e80007f5

    0 votes

    Permalink

    I think it is a compatible bug. It pass on IE10, but not on chrome.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 5217623af10c60e16d001b7f

    0 votes

    Permalink

    i found it work in the IE

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 521f7a8d548c3594ae000642

    0 votes

    Permalink

    Start your response…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 5221f623abf82105c40012e4

    0 votes

    Permalink

    this do not help

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 5222252180ff33ba86001994

    0 votes

    Permalink

    I repeat, use IDs in CSS and that’s it :).

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    5 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    HTML Basics II, exercise 10/16.

    My code for the other examples are fine (

  • This item is big Garamond.
  • ).

    But the second line keeps giving me errors (“Oops, try again! It looks like your second

  • ‘s font-size is 16px instead of 12px.”)
  • I tried:

    1. changing the zoom on my browser
    2. deleting everything between the tags
    3. deleting the

      tags
    4. deleting the
    5. tags

    Nothing works :( I can’t move on without this course.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Brianna, I think the problem is a : after font-size. I passed with this code:

  • This item is big Garamond.
  • This item is medium Verdana.
  • This item is small Impact.
  • Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Thanks, but I tried that and it still didn’t work. I even tried copying and pasting everything over again and it still has the same font size error.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I tried copying and pasting your code into Chrome and it gave me the same error.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    The font-size issue is the major problem and mainly caused by the font size settings in your browser. There are several post about that on this page so I don’t want to repeat. (This page is getting lengthy!) You can also try a different browser.

    Answer 524bbfb9548c359668001225

    0 votes

    Permalink

    I had the same issue in the font size lessons in HTML Basic II. I followed every possible solution in the forum but I still got the error saying my font size is 12px instead of 10px. I’m always using the Actual Size so something else should be fixed.

    Go to Settings in Chrome, then Show Advanced Settings, Web Contents, Customize Fonts. Here, change the minimum font size to 10px, and all my problems with the exercises are now gone.

    Other browsers should have similar settings about the minimum font size. Hope this helps.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Man you are awesome!

    Answer 5254d8a1548c355a3c0006d4

    0 votes

    Permalink

    change the chrome into 150%,it will be ok

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 525c0411f10c60d34f00021e

    0 votes

    Permalink

    This is the first module I’ve had issues with. I believe the problem lies in the instruction of this section, not in error reporting. All previous sections were very clear, with concise examples and instruction. Though this section does mention nesting, and shows examples of incorrect nesting, it does not specify how to complete the nesting correctly to achieve the desired results. It took me entirely way too long before I realized it was nested WITHOUT a prior (p) tag - this is confusing and should be clarified as it is quite different from previous nesting examples in other modules (<p with <a href, etc)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 527128beabf821780f003d06

    0 votes

    Permalink

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52859e6b80ff33069a001c69

    0 votes

    Permalink

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 528b4509f10c60ef40001c06

    0 votes

    Permalink

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 528f87d3abf82148670039b6

    0 votes

    Permalink

    Try using google chrome

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52909c38abf8217421000279

    0 votes

    Permalink

    O.M.G. HA HA HA HA…..!!!!!!!!!!!!!Thnx bro.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 5296aff2f10c60fbe10005c1

    0 votes

    Permalink

    use Opera and problems are gone.

    Chrome will change the font size. in

    So delete

    of you insist to use Chrome.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 5296b126f10c60f5b1001757

    0 votes

    Permalink

    use Opera and problems are gone.

    Chrome will change the font size. in

    So delete <p>if you insist to use Chrome.

    `

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52a5243880ff3348290006f4

    0 votes

    Permalink

    this is incredibly frustrating. trying to LEARN, but getting inaccurate responses for correct entry…

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52a632ba631fe9cf18000420

    0 votes

    Permalink

    LoL my exercise was wrong because I din’t put a space between : and 10px

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52a8f0a98c1cccb8e8000ce9

    0 votes

    Permalink

    Thank you for the tip it helped me a lot!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52b62c83631fe9db03000b2b

    0 votes

    Permalink

    <li style="font-size:16px; font-style:Garamond">This item is big Garamond.</li>
         	<li style="font-size:12px; font-style:Verdana">This item is medium Verdana.</li>
         	<li style="font-size:10px; font-style:Impact">This item is small Impact.</li>
    

    Oops, try again. Did you remember to change the first

  • to the font Garamond? The ‘G’ in ‘Garamond’ must be capitalized!
  • WHAT AM I DOING WRONG?!

    I use Firefox on a mac.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !

    Answer 52b85acd631fe90f6e000181

    0 votes

    Permalink

    Here is my code. It got me past so it might work for you.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52c28069548c35ff6e000f77

    0 votes

    Permalink

            <!DOCTYPE html>
    <html>
        <head>
            <title>First font size change</title>
        </head>
        <body>
            <p style="font-size:10px"> Some text for you to make super big!</p>
            <p style="font-size: 20px"> Some text for you to make normal size!</p>
            <p style="font-size: 40px"> Some text for you to make super big!</p>
        </body>
    </html>
    

    THIS IS MY CODE, AND IT SHOW ME THE MISTAKE LIKE THIS: 哦偶,再试试。 Did you set the first paragraph’s font-size to 10px? It looks like it’s 12px. (If you’re getting a weird decimal font size, check the Hint.)

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I have solved the problem. Just zoom to 150% and it passed.

    Answer 52c904d580ff335af200490e

    0 votes

    Permalink

    I think there is a problem with the website. I’m currently using Google Chrome and I find out that I have to set the page’s size to 200% to pass this test.. Wired.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52ceba09631fe9a124002acc

    0 votes

    Permalink

    MY ANUS IS BLEEING

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52d4020c80ff33d06b007b9a

    0 votes

    Permalink

    Penis Vagina

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52e6f5d08c1ccc9e82000320

    0 votes

    Permalink

    @uddupaji192830937 thx you are a boss !

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 52e74ad6282ae334dd001097

    0 votes

    Permalink

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    this is the correct style coding

    Answer 52f534b680ff3312f5001066

    0 votes

    Permalink

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 52f9236f52f863d5df000143

    0 votes

    Permalink

    this is my code from Whats CSS? p { <link type=”text/css”rel=”stylesheet” href=”stylesheet.css”/ } font-size: 44px; } p { color: blue; } span {font-size: 44px;}

    p {font-size: 44px;}

    }

    i am having a big problem ! need help.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 52fbc78a9c4e9df13c001e6d

    0 votes

    Permalink

    Silly me I spelled style wrong in this line: li style=”font-size:12px;font-family:Verdana”

    so it would keep telling me that you have size 16 instead of 12. So make you sure you spell everything correctly!

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 5310c4db9c4e9d8a1d0001ca

    0 votes

    Permalink

    I’m working on my laptop with a screen resolution of 1366*768 and a Chrome in Win 8.1

    When I re-sized the font I noticed the editor recognized my font as 12px instead of 10px. However, when I zoomed in (instead of zoomed out) to 150% simply with “ctrl” + “+/=”, the code passed.

    So my suggestion is you may try zooming in/out in both directions to see if it works.

    ==========================

    My guess is that the this page was programmed on a Mac with retina display (resolution=2048*1536) .

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 531223c09c4e9de9770048e5

    0 votes

    Permalink

    I’m just frustragint. 10/12 says “Did you remember to change the first

  • to the font Verdana?”
  • When I rewrite it to Verdana (instruction in the left says me it should be Arial), I got the next error:

    “Did you remember to change the first

  • to the font Arial?”
  • It would be fun but I only can cry.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 531719469c4e9da19d00201f

    0 votes

    Permalink

    it`s horrible to zoom in and out to get the result! my zoom = 150% …( Chrome)

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 531d0af6282ae38f05006caa

    0 votes

    Permalink

    I’m getting “Oops, try again. Did you set the first paragraph’s font-size to 10px? It looks like it’s 12px. (If you’re getting a weird decimal font size, check the Hint.)”

    Here’s my code:

    <!DOCTYPE html>
    <html>
        <head>
            <title>First font size change</title>
        </head>
        <body>
            <p style="font-size: 10px"> Some text for you to make tiny! </p>
            <p style="font-size: 20px"> Some text for you to make normal size!</p>
            <p style="font-size: 40px"> Some text for you to make super big!</p>
        </body>
    </html>
    
    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Figured it out. Browser was set to use 12 as the minimum font size.

    Answer 532361ad52f8635679001fb7

    0 votes

    Permalink

    FOR THE CODE

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 532ea0aa80ff33646f005c84

    0 votes

    Permalink

    <body>
        <p style="font-size: 10px">Some text for you to make tiny!</p>
        <p style="font-size: 20px">Some text for you to make normal size!</p>
        
        
        <p style="font-size: 40px"> Some text for you to make super big!</p>
    </body>
    

    Just try like this, it will work.

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 533894107c82cac3c800b80f

    0 votes

    Permalink

    How do I stop receiving notifications for this post

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    Answer 534003e7631fe9411c00237e

    0 votes

    Permalink

    Hello, I am at HTML II Basics 8. Front size. It keeps saying this: Oops, try again. Did you set the first paragraph’s font-size to 10px? It looks like it’s 16px. This is my code:

    <body>
            <p style="front-size: 10px"> Some text for you to make tiny!</p> 
            <p style="front-size: 20px"> Some text for you to make normal size!</p>
            <p style="front-size: 40px"> Some text for you to make super big!</p>
    </body>
    

    I have already done the Crtl+0 thing. I use Google Chrome browser by the way. What’s wrong with my code?

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    I fixed the problem with the first one by changing the settings in Chrome, but now the second one is also 10 px…

    Answer 5367d72c8c1cccc4bd0002aa

    0 votes

    Permalink

    On both Chrome and Firefox I managed not to be allowed to use 16px. It refuses to change the font. I have reset the code a few times. It still will not pass me.

    Profile image of anonymous
    Submitted by anonymous
    almost 11 years

    Answer 51b935498c1ccca279002d3d

    -2 votes

    Permalink

    Lesson 02 FONT SIZE error with Google Chrome Brower. Win7 PC

    I really dont know what is wrong with my code? Anyone can help me figure it out?

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    2 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    try this

                  <p style = "font-size: 10px"></p>
    
                <p style = "font-size: 20px"></p>
    
             <p> style = "font-size: 40px"></p>
             </body> 
    

    go to settings then advaced text size customize size 8 courier new. standard text size 40 times new roman. i used google chrome

    Profile image of anonymous
    Submitted by anonymous
    about 11 years

    In the settings of Chrome, I found there’s a Minimum Font to be set 12px. OMG, that’s why I can not pass the 10px to this excersize! I changed the Minimum Font to be 10px. ;)

    Answer 5227586fabf8215ded00268e

    -2 votes

    Permalink

    the font size in chrome has many problem , but in IE is ok ,

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    1 comments

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    You can’t even use Code Academy on IE

    Answer 520c4b62abf8217027000d06

    -5 votes

    Permalink

    la la-lalaloopsy!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Answer 51bafa1d9c4e9d57b1004ccc

    -14 votes

    Permalink

    maybe i should give up… this page makes a lot of useless time in doing other things , instead of learning HTML code…

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    13 comments

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    NEVER GIVE UP EVAR!!! EVAAAAAAAAAAAAAAAAAR!!! PS: please read this STATICOR. I WANT THIS TO REACH YOUR HEART! YOUR “STATICORE” … get it its a joke lols.

    Profile image of anonymous
    Submitted by anonymous
    almost 12 years

    :) THANKS A LOT ~ my name’idea from Java a key word

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    don’t

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    im the 6th negative!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    dude, lighten up

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Yes, you are right, Staticor!

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I’m the 8th

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    i said dont give up! just skip it somehow. Im doing pretty well and i skipped it.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I don’t understand how you keep on downvoting if he says the same as you. LOL.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    I use Opera , and all weird problem is gone. maybe you should try it.

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    yah thats wat happen to me

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    Hey the thing is you need to persever through this one becase there are many many issues

    Profile image of anonymous
    Submitted by anonymous
    over 11 years

    hey everyone! I have a good news for you :) I think somebody also use Chrome but it get erorr in the font-size 10px… but don worry ! you can go to your setting and adjust the font size to become 10! Why we always get error it is because our Chrome’s font size at least at 12px ! My English was bad but I hope I’m pass on this message to you! GOOD LUCK !