Codecademy HTML Answers

    HTML Basics

    Lesson 01/14 – Why learn HTML? [code lang=”html”] <!DOCTYPE html> <strong>This is a test</strong> [/code] Lesson 02/14 – HTML and CSS [code lang=”html”] <!DOCTYPE html></DOCTYPE> <html>this is a test </html> [/code] Lesson 03/14 – Basic terminology [code lang=”html”] <!DOCTYPE html> […]
    Read More
  • HTML Basics II

    Lesson 01/16 – Introduction [code lang=”html”] <!DOCTYPE html> <html> <head> <title>Titolo</title> </head> <body> <p>Paragrafo</p> </body> </html> [/code] Lesson 02/16 – Indentation is your friend [code lang=”html”] <!DOCTYPE html> <html> <head> <title> titolo </title> </head> <body> </body> </html> [/code] Lesson 03/16 […]
    Read More