diff --git a/seed_data/coursewares.json b/seed_data/coursewares.json index d3adbf9e50..a041b30292 100644 --- a/seed_data/coursewares.json +++ b/seed_data/coursewares.json @@ -1,31 +1,694 @@ [ { "_id" : "bd7123c8c441eddfaeb5bdef", - "name": "Intro", - "difficulty": "0", + "name": "Start our challenges", + "difficulty": "0.00", "description": [ - "Welcome to the FCC courseware! You can click on the button below for more information", - "Courseware comes loaded with Bootstrap, Animate, Lodash, Jquery, and Angular. You can include more libraries by finding a cdn and including them in your html", - "We hope you have fun learning!", - "To advance to the next exercise, change the h1 tag's text to say hello world" + "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", + "See the code to the right 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 is closign 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 you

" + "challengeSeed": "

hello

" }, { "_id" : "bad87fee1348bd9aedf0887a", - "name": "Centering Text", - "difficulty" : "0", + "name": "Use the h2 tag", + "difficulty" : "0.01", "description": [ - "Your job is to center the h1 element using a built in bootstrap class and change the text to hello world.", - "If you need help, you can refer to the bootstrap documentation, something you should get in the habit of!" + "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

" + }, + { + "_id" : "bad87fee1348bd9aedf08801", + "name": "Use the p tag", + "difficulty" : "0.02", + "description": [ + "Create a p - or Paragraph - element below the h2 element that says \"hello paragraph\".", + "This will create a p element. P elements are the prefered element for normal-sized paragraph text on websites." + ], + "tests": [ + "expect($('p')).to.have.text('hello paragraph');" + ], + "challengeSeed": "

hello world

\n

hello html

" + }, + { + "_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": "