Be Brav3

FCC Challenge 1: Say Hello to HTML Elements

March 06, 2016

This is the first challenge of Free Code Camp. The challenge requires you to change <h1>Hello</h1> and update the text to say “Hello World.” The finished challenge should display <h1>Hello World</h1>

Welcome to Free Code Camp’s first coding challenge.

You can edit code in your text editor, which we’ve embedded into this web page.

Do you see the code in your text editor that says <h1>Hello</h1>? That’s an HTML element.

Most HTML elements have an opening tag and a closing tag.

Opening tags look like this:

<h1></h1>

Closing tags look like this:

</h1>

Note that the only difference between opening tags and closing tags is that closing tags have a slash after their opening angle bracket.

Each challenge has tests that you can run at any time by clicking the “Run tests” button. Once you get all tests passing, you can advance to the next challenge.

To pass the test on this challenge, change your h1 element’s text to say “Hello World” instead of “Hello”. Then click the “Run tests” button.