[ { "_id" : "bd7123c8c441eddfaeb5bdef", "name": "Start our Challenges", "difficulty": "0.00", "description": [ "Welcome to Free Code Camp's first challenge! Click on the button below for further instructions.", "Awesome. Now you can read the rest of this challenge's instructions", "You can edit code in text editor we've embedded into this web page.", "See the code in the 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>. Closing tags look like this: </h1>. Note that the only difference between opening and is that closing tags have a slash after their opening angle bracket.", "To advance to the next exercise, change the h1 tag's text to say \"hello world\" instead of \"hello\"." ], "tests": [ "expect($('h1')).to.have.text('hello world');" ], "challengeSeed": [ "

hello

" ], "challengeType": 0 }, { "_id" : "bad87fee1348bd9aedf0887a", "name": "Use the h2 Element", "difficulty" : "0.01", "description": [ "Add an h2 tag that says \"hello HTML\" to create a second HTML element below the \"hello world\" h1 element.", "The h2 element you enter will create an h2 element on the website.", "This element tells the browser how to render the text that it contains.", "h2 elements are slightly smaller than h1 elements. There are also an h3, h4, h5 and h6 elements." ], "tests": [ "expect($('h1')).to.have.text('hello world');", "expect($('h2')).to.have.text('hello HTML');" ], "challengeSeed": [ "

hello world

" ], "challengeType": 0 }, { "_id" : "bad87fee1348bd9aedf08801", "name": "Use the P Element", "difficulty" : "0.02", "description": [ "Create a p - or paragraph - element below the h2 element, and give it the text \"hello paragraph\".", "P elements are the preferred element for normal-sized paragraph text on websites.", "You can create a p element like so: <p>I'm a p tag!</p>" ], "tests": [ "expect($('p')).to.have.text('hello paragraph');" ], "challengeSeed": [ "

hello world

", "

hello html

" ], "challengeType": 0 }, { "_id" : "bad87fee1348bd9aedf08802", "name": "Uncomment HTML", "difficulty" : "0.03", "description": [ "Uncomment the h1, h2 and p elements.", "Commenting is a way that you can leave comments within your code without affecting the code itself.", "Commenting is also a convenient way to make code inactive without having to delete it entirely.", "You can start a comment with <!-- and end a comment with -->." ], "tests": [ "expect($('h1')).to.have.text('hello world');" ], "challengeSeed": [ "