alright codecademy, what am I doing wrong?

Discussion in 'Miscellaneous' started by golddigger221, Mar 14, 2015.

Thread Status:
Not open for further replies.
  1. to CodeCademy, this is wrong code because of the nesting. anybody know whats wrong?
    HTML:
    <!DOCTYPE html>
    <html>
        <head>
            <title>First font size change</title>
        </head>
        <body>
            <p>
            <p style="font-size:12px"> Some text for you to make tiny!
            </p>
            <p>
            <p style="font-size:20px"> Some text for you to make normal size!
            </p>
            <p>
            <p style= "font-size: 40px"> Some text for you to make super big!
            </p>
        </body>
    </html>
    IF theres really something with the nesting of this code, please post below what's the problem.
    thanks!
  2. Hmm, seems fine to me..
  3. I do not see anything wrong with it either. I have 100% complete codecademy's html class.... This looks fine.
  4. Code:
    <!DOCTYPE html>
    <html>
        <head>
            <title>First font size change</title>
        </head>
        <body>
            <p style="font-size:12px"> 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>
    Too many <p> tags, fixed it for ya
  5. Okay, I see it now lol.
  6. thanks! It worked!
    Closing thread
  7. I thought the <p>'s were a bit weird but I didn't want to point it out since I only have a little HTML experience
  8. Closed by request.
Thread Status:
Not open for further replies.