{
"name": "Basic HTML5 and CSS",
"order": 0.002,
"challenges": [
{
"_id": "bd7123c8c441eddfaeb5bdef",
"name": "Waypoint: Say Hello to HTML Elements",
"difficulty": 0.0085,
"description": [
"Welcome to Free Code Camp's first coding 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 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>
. Closing tags look like this: </h1>
. Note that the only difference between opening and closing tags is that closing tags have a slash after their opening angle bracket.",
"Once you've completed each challenge, and all its tests are passing, the \"Go to my next challenge\" button will become enabled. Click it - or press control and enter at the same time - to advance to the next challenge.",
"To enable the \"Go to my next challenge\" button on this exercise, change your h1
tag's text to say \"Hello World\" instead of \"Hello\"."
],
"tests": [
"assert.isTrue((/hello(\\s)+world/gi).test($('h1').text()), 'Your h1
element should have the text \"Hello World\"')"
],
"challengeSeed": [
"
código
en tu editor de texto
, que hemos incrustado en esta página web.",
"¿Ves el código en tu editor de texto que dice <h1>Hello</h1>
? Ese es un elemento
HTML.",
"La mayoría de los elementos HTML tienen una etiqueta de apertura
y una etiqueta de cierre
. Las etiquetas de apertura se ven como: <h1>
. Las etiquetas de cierre se ven como: </h1>
. Fíjate que la única diferencia entre las etiquetas de apertura y de cierre es que estas últimas tienen un / después de su signo de apertura (<).",
"Una vez que hayas completado cada desafío, y que hayas pasado todas sus pruebas, el botón \"Ir a mi siguiente desafío\" se activará. Haz click en él - o presiona control y enter al mismo tiempo - para avanzar al siguiente desafío.",
"Para activar el botón \"Ir a mi siguiente desafío\" de este ejercicio, cambia tu texto de la etiqueta h1
para que diga \"Hello World\" en lugar de \"Hello\"."
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf0887a",
"name": "Waypoint: Headline with the h2 Element",
"difficulty": 0.010,
"description": [
"Add an h2
tag that says \"CatPhotoApp\" to create a second HTML element
below your \"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 h3
, h4
, h5
and h6
elements."
],
"tests": [
"assert(($('h2').length > 0), 'Create an h2
element.')",
"assert(editor.match(/<\\/h2>/g) && editor.match(/<\\/h2>/g).length === editor.match(/h2
element has a closing tag.')",
"assert.isTrue((/cat(\\s)?photo(\\s)?app/gi).test($('h2').text()), 'Your h2
element should have the text \"CatPhotoApp\"')",
"assert.isTrue((/hello(\\s)+world/gi).test($('h1').text()), 'Your h1
element should have the text \"Hello World\"')"
],
"challengeSeed": [
"h2
que diga \"CatPhotoApp\" para crear un segundo elemento
HTML debajo de tu elemento h1
\"Hello World\".",
"El elemento h2 que ingreses creará un elemento h2 en el sitio web.",
"Este elemento le dice al navegador cómo mostrar el texto que contiene.",
"Los elementos h2
son ligeramente más pequeños que los elementos h1
. También hay elementos h3
, h4
, h5
y h6
."
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08801",
"name": "Waypoint: Inform with the Paragraph Element",
"difficulty": 0.011,
"description": [
"Create a p
element below your h2
element, and give it the text \"Hello Paragraph\".",
"p
elements are the preferred element for normal-sized paragraph text on websites. P is short for \"paragraph\".",
"You can create a p
element like so: <p>I'm a p tag!</p>
"
],
"tests": [
"assert(($('p').length > 0), 'Create a p
element.')",
"assert.isTrue((/hello(\\s)+paragraph/gi).test($('p').text()), 'Your p
element should have the text \"Hello Paragraph\".')",
"assert(editor.match(/<\\/p>/g) && editor.match(/<\\/p>/g).length === editor.match(//g).length, 'Make sureyour p
element has a closing tag.')"
],
"challengeSeed": [
"
<p>
, una de nuestras pruebas pasarán (ya que ésta es HTML válido). Asegúrate de cerrar el elemento agregando la etiqueta de cierre </p>
.",
"Los elementos párrafo son los principales elementos para los párrafos de texto en tamaño normal en sitios web.",
"Tú puedes crear un elemento párrafo como éste: <p>I'm a p tag!</p>
"
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aeaf08801",
"name": "Waypoint: Visually Separate Elements with Line Breaks",
"difficulty": 0.012,
"description": [
"Add a br
element to your page, preferably between two of your elements.",
"br
elements, also known as \"line break\" elements, can be created with <br>
.",
"Note that <br>
has no closing tag. It is a \"self-closing\" element.",
"You'll encounter other self-closing element tags soon."
],
"tests": [
"assert(($('br').length > 0), 'Add a br
element to your page, preferably between two of your elements.')"
],
"challengeSeed": [
"Hello Paragraph
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "Waypoint: Separa Elementos Visualmente con Saltos de Línea", "descriptionEs": [ "Agrega unsalto de línea
entre los elementos <h2>
y <p>
.",
"Puedes crear un elemento de salto de línea con <br/>
.",
"Fíjate que <br/>
no tiene etiqueta de cierre. Es un elemento auto-cerrado
. ¿Ves cómo un / precede el signo de cierre (>)?",
"Luego te encontrarás con otras etiquetas de elementos auto-cerrados
."
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08802",
"name": "Waypoint: Uncomment HTML",
"difficulty": 0.013,
"description": [
"Uncomment your 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": [
"assert($('h1').length > 0, 'Make your h1
element visible on your page by uncommenting it.')",
"assert($('h2').length > 0, 'Make your h2
element visible on your page by uncommenting it.')",
"assert($('p').length > 0, 'Make your p
element visible on your page by uncommenting it.')",
"assert(!new RegExp('-->', 'gi').test(editor), 'Be sure to delete the -->
that ends the comment.')"
],
"challengeSeed": [
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "Waypoint: Quitar comentarios HTML",
"descriptionEs": [
"Quitar el comentario a los elementos h1
, h2
y p
.",
"Crear comentarios es una forma en la que puedes dejar mensajes dentro de tu código sin afectar el resultado.",
"Agregar comentarios es también una forma conveniente de desactivar tu código sin tener que borrarlo por completo.",
"Puedes comenzar un comentario con <!--
y terminar de comentar con -->
."
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08804",
"name": "Waypoint: Comment out HTML",
"difficulty": 0.014,
"description": [
"Comment out your h1
element and your p
element, but leave your h2
element uncommented.",
"Remember that in order to start a comment, you need to use <!--
and to end a comment, you need to use -->
.",
"Here you'll need to end the comment before your h2
element begins."
],
"tests": [
"assert(($('h1').length === 0), 'Comment out your h1
element so that it is not visible on your page.')",
"assert(($('h2').length > 0), 'Leave your h2
element uncommented so that is not visible on your page.')",
"assert(($('p').length === 0), 'Comment out your p
element so that it is not visible on your page.')"
],
"challengeSeed": [
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "Waypoint: Comenta en HTML",
"descriptionEs": [
"Comenta el elemento h1
y el elemento p
, pero deja sin comentar el elemento h2
.",
"Recuerda que para comenzar un comentario, necesitas usar <!--
y para terminar un comentario, necesitas usar -->
.",
"Aquí necesitarás terminar el comentario antes que comience el elemento h2."
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08833",
"name": "Waypoint: Fill in the Blank with Placeholder Text",
"difficulty": 0.015,
"description": [
"Replace the text inside your p
element with the first few words of the provided \"Ktty Ipsum\" text.",
"Web developers traditionally use \"Lorem Ipsum\" text as placeholder text. It's called \"Lorem Ipsum\" text because those are the first two words of a famous passage by Cicero of Ancient Rome.",
"\"Lorem Ipsum\" text has been used as placeholder text by typesetters since the 16th century, and this tradition continues on the web.",
"Well, 5 centuries is long enough. Since we're building a CatPhotoApp, let's use something called \"Kitty Ipsum\"!",
"Here are the first few words of \"Kitty Ipsum\" text, which you can copy and paste into the right position: Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
"
],
"tests": [
"assert.isTrue((/Kitty(\\s)+ipsum(\\s)+dolor/gi).test($('p').text()), 'Your p
element should contain the first few words of the provided \"Kitty Ipsum\" text.')"
],
"challengeSeed": [
"Hello Paragraph
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "Waypoint: Llena espacios con texto de relleno", "descriptionEs": [ "Cambia el texto en el elementop
para usar las primeras palabras del texto Kitty Ipsum
.",
"Los desarrolladores web tradicionalmente usan Lorem Ipsum
como texto de relleno. Se llama texto Lorem Ipsum porque esas son las primeras dos palabras de una cita famosa de Cicerón de la Roma Antigua.",
"El texto Lorem Ipsum ha sido usado como texto de relleno en las imprentas desde el siglo 16, y esta tradición continúa en la web.",
"Bueno, 5 siglos es bastante. Ya que estamos construyendo una aplicación de fotos de gatos (CatPhotoApp), ¡usemos algo llamado Kitty Ipsum!",
"Aquí están las primeras palabras del texto Kitty Ipsum, que puedes copiar y pegar en la posición correcta: Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
"
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fed1348bd9aedf08833",
"name": "Waypoint: Delete HTML Elements",
"difficulty": 0.016,
"description": [
"Delete your h1
and br
elements so we can simplify our view.",
"Our phone doesn't have much vertical space.",
"Let's remove the unnecessary elements so we can start building our CatPhotoApp."
],
"tests": [
"assert(($('h1').length == 0), 'Delete your h1
element.')",
"assert(($('h2').length > 0), 'Leave your h2
element on the page.')",
"assert(($('br').length == 0), 'Delete your br
element.')",
"assert(($('p').length > 0), 'Leave your p
element on the page.')"
],
"challengeSeed": [
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "Waypoint: Borra elementos HTML", "descriptionEs": [ "Borra los elementos h1 y br para simplificar nuestra vista.", "Nuestro teléfono no tiene mucho espacio para elementos HTML.", "Removamos los elementos innecesarios para que empecemos a construir nuestra CatPhotoApp." ], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08803", "name": "Waypoint: Change the Color of Text", "difficulty": 0.017, "description": [ "Change yourh2
element's style so that its text color is red.",
"We can do this by changing the \"style\" of your h2
element.",
"The style that is responsible for the color of an element's text is the \"color\" style.",
"Here's how you would set your h2
element's text color to blue: <h2 style=\"color: blue\">CatPhotoApp</h2>
."
],
"tests": [
"assert($('h2').css('color') === 'rgb(255, 0, 0)', 'Your h2
element should be red.')"
],
"challengeSeed": [
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "Waypoint: Cambia el color del texto", "descriptionEs": [ "Cambia el estilo del elementoh2
de manera que el color de su texto sea rojo.",
"Podemos hacer esto por medio de cambiar el estilo
del elemento h2
.",
"El estilo responsable del color de texto de un elemento es el estilo \"color\".",
"Así es como podrías volver el color de texto de tu elemento h2
en azul: <h2 style=\"color: blue\">CatPhotoApp</h2>
"
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08805",
"name": "Waypoint: Use CSS Selectors to Style Elements",
"difficulty": 0.018,
"description": [
"Delete your h2
element's style attribute and instead create a CSS style
element. Add the necessary CSS to turn all h2
elements blue.",
"With CSS, there are hundreds of CSS \"attributes\" that you can use to change the way an element looks on your page.",
"When you entered <h2 style=\"color: red\">CatPhotoApp</h2>
, you were giving that individual h2
element an \"inline style\".",
"That's one way to add style to an element, but a better way is by using Cascading Style Sheets (CSS).",
"At the top of your code, create a style
element like this: <style></style>
",
"Inside that style element, you can create a \"CSS selector\" for all h2
elements. For example, if you wanted all h2
elements to be red, your style element would look like this: <style>h2 {color: red;}</style>
",
"Note that it's important to have both opening and closing curly braces ({
and }
) around each element's style. You also need to make sure your element's style is between the opening and closing style tags. Finally, be sure to add the semicolon to the end of each of your element's styles."
],
"tests": [
"assert($('h2').css('color') === 'rgb(0, 0, 255)', 'Your h2
element should be blue.')",
"assert(!$('h2').attr('style'), 'Remove the style attribute from your h2
element.')"
],
"challengeSeed": [
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "Waypoint: Usa selectores CSS para dar estilo a los elementos", "descriptionEs": [ "Borra el atributostyle
de tu elemento h2
y escribe el CSS para hacer todos los elementos h2
de color azul.",
"Con CSS, hay cientos de atributos CSS
que puedes usar para cambiar como un elemento se ve en una página web.",
"Cuando entraste <h2 style=\"color: red\">CatPhotoApp<h2>
, le estuviste dando a ese elemento h2 en particular un estilo en línea
",
"Esa es una forma de agregar estilo a un elemento, pero una manera mejor es usando Hojas de Estilo en Cascada (Cascading Style Sheets, CSS)
.",
"Al principio de tu código, crea una etiqueta style
como ésta: <style></style>
",
"Dentro de ese elemento style, puedes crear un selector css
para todos los elementos h2
. Por ejemplo, si querías que todos los elementos h2
sean rojos, tu elemento style se vería así: <style>h2 {color: red;}</style>
",
"Fíjate que es importante tener llaves de apertura y de cierre
({
y }
) alrededor del estilo para cada elemento. También necesitas asegurarte que el estilo para tu elemento está entre las etiquetas style de apertura y cierre. Finalmente, asegúrate de agregar el punto y coma al final de cada uno de los estilos de tu elemento."
],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aecf08806",
"name": "Waypoint: Use a CSS Class to Style an Element",
"difficulty": 0.019,
"description": [
"Create a CSS class called \"red-text\" and apply it to your h2
element.",
"Classes are reusable styles that can be added to HTML elements.",
"Here's the anatomy of a CSS class:",
"<style>
tag.",
"You can apply a class to an HTML element like this: <h2 class=\"blue-text\">CatPhotoApp</h2>
",
"Note that in your CSS style
element, classes should start with a period. In your HTML elements' class declarations, classes shouldn't start with a period.",
"Instead of creating a new style
element, try removing the h2
style declaration from your existing style element, then replace it with the class declaration for \".red-text\"."
],
"tests": [
"assert($('h2').css('color') === 'rgb(255, 0, 0)', 'Your h2
element should be red.')",
"assert($('h2').hasClass('red-text'), 'Your h2
element should have the class \"red-text\".')"
],
"challengeSeed": [
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aefe08806", "name": "Waypoint: Style Multiple Elements with a CSS Class", "difficulty": 0.020, "description": [ "Apply the \"red-text\" class to yourh2
and p
elements.",
"Remember that you can attach classes to HTML elements by using class=\"your-class-here\"
within the relevant element's opening tag.",
"Remember that CSS selectors require a period at the beginning like this: .red-text { color: blue; }
, but that class declarations don't use a period, like this: <h2 class=\"blue-text\">CatPhotoApp<h2>
."
],
"tests": [
"assert($('h2').css('color') === 'rgb(255, 0, 0)', 'Your h2
element should be red.')",
"assert($('h2').hasClass('red-text'), 'Your h2
element should have the class \"red-text\".')",
"assert($('p').css('color') === 'rgb(255, 0, 0)', 'Your p
element should be red.')",
"assert($('p').hasClass('red-text'), 'Your p
element should have the class \"red-text\".')"
],
"challengeSeed": [
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08806", "name": "Waypoint: Change the Font Size of an Element", "difficulty": 0.021, "description": [ "Create a secondp
element. Then, inside your <style>
element, set the \"font-size\" of all p
elements to 16 pixels.",
"Font size is controlled by the \"font-size\" CSS attribute, like this: h1 { font-size: 30px; }
.",
"First, create a second p
element with the following Kitty Ipsum text: Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
",
"See if you can figure out how to give both of your p
elements the font-size of 16 pixels (16px
). You can do this inside the same <style>
tag that we created for your \"red-text\" class."
],
"tests": [
"assert($('p').length > 1, 'You need 2 p
elements with Kitty Ipsum text.')",
"assert(editor.match(/<\\/p>/g).length > 1, 'Make sureeach of your p
elements has a closing tag.')",
"assert($('p').css('font-size') === '16px', 'Give your p
elements the font-size of 16px.')"
],
"challengeSeed": [
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aede08807", "name": "Waypoint: Set the Font Family of an Element", "difficulty": 0.022, "description": [ "Make all of yourp
elements use the \"Monospace\" font.",
"You can set an element's font by using the \"font-family\" attribute.",
"For example, if you wanted to set your h2
element's font to \"Sans-serif\", you would use the following CSS: h2 { font-family: Sans-serif; }
"
],
"tests": [
"assert($('p').css('font-family').match(/monospace/i), 'Your p
elements should use the font \"Monospace\".')"
],
"challengeSeed": [
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08807", "name": "Waypoint: Import a Google Font", "difficulty": 0.023, "description": [ "Apply thefont-family
of \"Lobster\" to your h2
element.",
"First, you'll need to make a \"call\" to Google to grab the \"Lobster\" font and load it into your HTML.",
"Copy the following code snippet and paste it into your code editor above your style
element:",
"<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
",
"Now you can set \"Lobster\" as a font-family attribute on your h2
element."
],
"tests": [
"assert(new RegExp('googleapis', 'gi').test(editor), 'Import the \"Lobster\" font.')",
"assert($('h2').css('font-family').match(/lobster/i), 'Your h2
element should use the font \"Lobster\".')",
"assert($('p').css('font-family').match(/monospace/i), 'Your p
element should still use the font \"Monospace\".')"
],
"challengeSeed": [
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08808", "name": "Waypoint: Specify How Fonts Should Degrade", "difficulty": 0.024, "description": [ "Make all yourh2
elements use \"Lobster\" as their font family, but degrade to the \"Monospace\" font when the \"Lobster\" font isn't available.",
"You can leave \"Lobster\" your h2
element's font-family, and have it \"degrade\" to a different font when \"Lobster\" isn't available.",
"For example, if you wanted an element to use the \"Helvetica\" font, but also degrade to the \"Sans-Serif\" font when \"Helvetica\" wasn't available, you could do use this CSS style: p { font-family: \"Helvetica\", \"Sans-Serif\"; }
.",
"There are several default fonts that are available in all browsers. These include \"Monospace\", \"Serif\" and \"Sans-Serif\". See if you can set your h2 elements to use \"Lobster\" and degrade to \"Monospace\".",
"Now try commenting out your call to Google Fonts, so that the \"Lobster\" font isn't available. Notice how it degrades to the \"Monospace\" font."
],
"tests": [
"assert($('h2').css('font-family').match(/lobster/i), 'Your h2 element should use the font \"Lobster\".')",
"assert($('h2').css('font-family').match(/monospace/i), 'Your h2 element should degrade to the font \"Monospace\" when \"Lobster\" is not available.')"
],
"challengeSeed": [
"",
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08809", "name": "Waypoint: Override Styles with Important", "difficulty": 0.025, "description": [ "Create an \"urgently-red\" class that gives an element the font-color of red, but add!important
to the class to ensure the element is rendered as being red. Immediately below your \"urgently-red\" class declaration, create a \"blue-text\" class that gives an element the font-color of blue. Apply both classes to your h2
element.",
"You can add more than one class to an element by separating the class declarations with a space, like this: <h2 class='green-text giant-text'>This will be giant green text</h2>
.",
"Sometimes HTML elements will receive conflicting information from CSS classes as to how they should be styled.",
"If there's a conflict in the CSS, the browser will use whichever style declaration is closest to the bottom of the CSS document (whichever declaration comes last). Note that in-line style declarations are the final authority in how an HTML element will be rendered.",
"There's one way to ensure that an element is rendered with a certain style, regardless of where that declaration is located. That one way is to use !important
.",
"In case you're curious, this is the priority hierarchy for element styles: !important > inline style > css class selector > css selector. That is, !important trumps all other styles, and inline styles trump style tag declarations.",
"Here's an example of a CSS style that uses !important
: <style> .urgently-blue { color: blue !important; } </style>
.",
"Now see if you can make sure the h2 element is rendered in the color red without removing the \"blue-text\" class, doing an in-line styling, or changing the sequence of CSS class declarations."
],
"tests": [
"assert(new RegExp('.blue-text', 'gi').test(editor), 'Create the CSS class \"blue-text\"')",
"assert(new RegExp('.urgently-red', 'gi').test(editor), 'Create the CSS class \"urgently-red\"')",
"assert(new RegExp('red.?!important', 'gi').test(editor), 'Add the \"!important\" declaration!')",
"assert($('h2').hasClass('blue-text'), 'Your h2 element should have the class \"blue-text\".')",
"assert($('h2').hasClass('urgently-red'), 'Your h2 element should have the class \"urgently-red\".')",
"assert($('h2').css('color') === 'rgb(255, 0, 0)', 'Your h2 element should be red.')"
],
"challengeSeed": [
"",
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08812", "name": "Waypoint: Add Images to your Website", "difficulty": 0.026, "description": [ "Use animg
element to add the image http://bit.ly/fcc-kittens
to your website.",
"You can add images to your website by using the img
element, and point to an specific image's URL using the src
attribute.",
"An example of this would be <img src=\"www.your-image-source.com/your-image.jpg\"/>
. Note that in most cases, img
elements are self-closing.",
"Try it with this image: http://bit.ly/fcc-kittens
."
],
"tests": [
"assert($('img').length > 0, 'Your webpage should have an image element.')",
"assert(!!$('img').filter(function(index) { return /kittens/gi.test($('img').attr('src')); }).length > 0, 'Your image should have have a src
attribute that points to the kitten image.')"
],
"challengeSeed": [
"",
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9acdf08812", "name": "Waypoint: Size your Images", "difficulty": 0.027, "description": [ "Create a class calledsmaller-image
and use it to resize the image so that it's only 100 pixels wide.",
"CSS has an attribute called width
that controls an element's width. Just like with fonts, we'll use pixels(px) to specify the images width.",
"For example, if we wanted to create a CSS class called \"larger-image\" that gave HTML elements a width of 500 pixels, we'd use: <style> .larger-image { width: 500px; } </style>
."
],
"tests": [
"assert($('img').hasClass('smaller-image'), 'Your img
element should have the class \"smaller-image\".')",
"assert($('img').width() === 100, 'Your image should be 100 pixels wide.')"
],
"challengeSeed": [
"",
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9bedf08813", "name": "Waypoint: Add Borders Around your Elements", "difficulty": 0.028, "description": [ "Create a class called \"thick-green-border\" that puts a 10-pixel-wide green border with a style of \"solid\" around an HTML element, and apply that class to your cat photo.", "CSS borders have attributes like style, color and width.", "For example, if we wanted to create a red, 5 pixel border around an HTML element, we could use this class:<style> .thin-red-border { border-color: red; border-width: 5px; border-style: solid; } </style>
."
],
"tests": [
"assert($('img').hasClass('smaller-image'), 'Your img
element should have the class \"smaller-image\".')",
"assert($('img').hasClass('thick-green-border'), 'Your img
element should have the class \"thick-green-border\".')",
"assert($('img').hasClass('thick-green-border') && parseInt($('img').css('border-top-width')), 'Give your image a border width of 10px.')",
"assert(new RegExp('solid', 'gi').test(editor), 'Give your image a border style of \"solid\".')"
],
"challengeSeed": [
"",
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08814", "name": "Waypoint: Add Rounded Corners with a Border Radius", "difficulty": 0.029, "description": [ "Give your cat photo a border radius of 10 pixels.", "Your cat photo currently has sharp corners. We can round out those corners with a CSS attribute calledborder-radius
.",
"You can specify a border-radius
with pixels. This will affect how rounded the corners are. Add this attribute to your thick-green-border
class and set it to 10 pixels."
],
"tests": [
"assert($('img').hasClass('thick-green-border'), 'Your image element should have the class \"thick-green-border\".')",
"assert(parseInt($('img').css('border-top-left-radius')) > 8, 'Your image should have a border radius of 10 pixels')"
],
"challengeSeed": [
"",
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08815", "name": "Waypoint: Make Circular Images with a Border Radius", "difficulty": 0.030, "description": [ "Give your cat photo aborder-radius
of 50%.",
"In addition to pixels, you can also specify a border-radius
using a percentage."
],
"tests": [
"assert(parseInt($('img').css('border-top-left-radius')) > 48, 'Your image should have a border radius of 50 percent, making it perfectly circular.')"
],
"challengeSeed": [
"",
"",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
", "Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
" ], "challengeType": 0, "nameCn": "", "descriptionCn": [], "nameFr": "", "descriptionFr": [], "nameRu": "", "descriptionRu": [], "nameEs": "", "descriptionEs": [], "namePt": "", "descriptionPt": [] }, { "_id": "bad87fee1348bd9aedf08816", "name": "Waypoint: Link to External Pages with Anchor Elements", "difficulty": 0.031, "description": [ "Create ananchor
element that links to http://catphotoapp.com and has \"cat photos\" as its anchor text (link text).",
"Here's a diagram of an anchor tag
. In this case, it's used in the middle of a paragraph element, which means your link will appear in the middle of your sentence.",
"<p>Here's a <a href='http://freecodecamp.com'> link to Free Code Camp</a> for you to follow.</p>
"
],
"tests": [
"assert((/cat photos/gi).test($('a').text()), 'Your anchor
element should have the anchor text of \"cat photos\"')",
"assert($('a').filter(function(index) { return /com/gi.test($('a').attr('href')); }).length > 0, 'You need an anchor
element that links to http://catphotoapp.com.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"
",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
",
"Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
"
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aede08817",
"name": "Waypoint: Wrap an Anchor Element within a Paragraph",
"difficulty": 0.032,
"description": [
"Now wrap your anchor element within a p
element so that the surrounding paragraph says \"click here for cat photos\", but where only \"cat photos\" is a link - the rest is plain text.",
"Again, here's a diagram of an a
element for your reference:",
"
",
"Here's an example: <p>Here's a <a href='http://freecodecamp.com'> link to Free Code Camp</a> for you to follow.</p>
"
],
"tests": [
"assert($('a').attr('href').match(/catphotoapp.com/gi).length > 0, 'You need an a
element that links to \"catphotoapp.com\".')",
"assert($('a').text().match(/cat\\sphotos/gi).length > 0, 'Your a
element should have the anchor text of \"cat photos\"')",
"assert($('a[href=\\'http://www.catphotoapp.com\\']').parent().is('p'), 'Your anchor element should be wrapped within a paragraph element.')",
"assert($('p').text().match(/click\\shere\\sfor/gi), 'Your p
element should have the text \"click here for\".')",
"assert(editor.match(/<\\/p>/g).length > 2, 'Make sureeach of your p
elements has a closing tag.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"cat photos",
"",
"
",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
",
"Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
"
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08817",
"name": "Waypoint: Make Dead Links using the Hash Symbol",
"difficulty": 0.033,
"description": [
"Use the hash symbol(#) to turn your anchor
element's link into a dead link.",
"Sometimes you want to add anchor
elements to your website before you know where they will link.",
"This is also handy when you're changing the behavior of a link using jQuery
, which we'll learn about later.",
"Replace your anchor
element's href
attribute with a hash symbol to turn it into a dead link."
],
"tests": [
"assert($('a').attr('href') === '#', 'Your anchor
element should be a dead link with a href
attribute set to \"#\".')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
",
"Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
"
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08820",
"name": "Waypoint: Turn an Image into a Link",
"difficulty": 0.034,
"description": [
"Wrap your img
element inside an anchor element with a dead link.",
"You can make elements into links by wrapping them in an anchor tag
.",
"Wrap your image in an anchor tag
. Here's an example: <a href='#'><img src='http://bit.ly/fcc-kittens2'/></a>
",
"Remember to use the hash symbol as your anchor tag
's href
property in order to turn it into a dead link.",
"Once you've done this, hover over your image with your cursor. Your cursor's normal pointer should become the link clicking pointer. The photo is now a link."
],
"tests": [
"assert(new RegExp('#').test($('a').children('img').parent().attr('href')), 'Your anchor
element should be a dead link with a href
attribute set to \"#\".')",
"assert($('a').children('img').length > 0, 'Wrap your image element inside an anchor element.')",
"assert(editor.match(/<\\/a>/g).length > 1, 'Make sureeach of your a
elements has a closing tag.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
",
"Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
"
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08818",
"name": "Waypoint: Add Alt Text to an Image for Accessibility",
"difficulty": 0.035,
"description": [
"Add the alt text
\"A cute orange cat lying on its back\" to our cat photo",
"alt text
is what browsers will display if they fail to load the image. alt text
is also important for blind or visually impaired users to understand what an image portrays. Search engines also look at alt text
.",
"In short, every image should have alt text
!",
"Alt text
is a useful way to tell people (and web crawlers like Google) what is pictured in a photo. It's extremely important for helping blind or visually impaired people understand the content of your website.",
"You can add alt text right in the img element like this: <img src=\"www.your-image-source.com/your-image.jpg\" alt=\"your alt text\"/>
."
],
"tests": [
"assert($('img').filter(function(){ return /cat/gi.test(this.alt) }).length > 0, 'Your image element should have an alt
attribute set to \"A cute orange cat lying on its back\".')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
",
"Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
"
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08827",
"name": "Waypoint: Create a Bulleted Unordered List",
"difficulty": 0.036,
"description": [
"Replace the paragraph elements with an unordered list of three things that cats love.",
"HTML has a special element for creating unordered lists, or bullet point-style lists.",
"Unordered lists start with a <ul>
element. Then they contain some number of <li>
elements.",
"For example: <ul><li>milk</li><li>cheese</li></ul>
would create a bulleted list of \"milk\" and \"cheese\"."
],
"tests": [
"assert($('ul').length > 0, 'Create a ul
element.')",
"assert($('li').length > 2, 'Add three li
elements to your ul
element.')",
"assert(editor.match(/<\\/ul>/g), 'Make sureyour ul
element has a closing tag.')",
"assert(editor.match(/<\\/li>/g) && editor.match(/<\\/li>/g).length > 2, 'Make sureeach of your li
elements has a closing tag.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
",
"Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.
"
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08828",
"name": "Waypoint: Create an Ordered List",
"difficulty": 0.037,
"description": [
"Create an ordered list
of the top 3 things cats hate the most.",
"HTML has a special element for creating ordered lists, or numbered-style lists.",
"Ordered lists start with a <ol>
element. Then they contain some number of <li>
elements.",
"For example: <ol><li>hydrogen</li><li>helium</li></ol>
would create a numbered list of \"hydrogen\" and \"helium\"."
],
"tests": [
"assert($('ul').length > 0, 'You should have an ul
element on your webpage.')",
"assert($('ol').length > 0, 'You should have an ol
element on your webpage.')",
"assert($('li').length > 5, 'You should have three li
elements within your ul
element.')",
"assert($('li').length > 5, 'You should have three li
elements within your ol
element.')",
"assert(editor.match(/<\\/ol>/g), 'Make sureyour ol
element has a closing tag.')",
"assert(editor.match(/<\\/ul>/g), 'Make sureyour ul
element has a closing tag.')",
"assert(editor.match(/<\\/li>/g).length > 5, 'Make sureeach of your li
elements has a closing tag.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
"
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08829",
"name": "Waypoint: Create a Text Field",
"difficulty": 0.038,
"description": [
"Now we'll create a web form. Create a text field under your lists.",
"Text inputs are a convenient way to get input from your user.",
"You can create one like this: <input type='text'>
"
],
"tests": [
"assert($('input').length > 0, 'Your app should have an text field input element.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
"
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08830",
"name": "Waypoint: Add Placeholder Text to a Text Field",
"difficulty": 0.039,
"description": [
"Add the placeholder text \"cat photo URL\" to your text field.",
"Placeholder text will appear in your text field before your user has inputed anything.",
"For example: <input type='text' placeholder='this is placeholder text'>
"
],
"tests": [
"assert($('input[placeholder]').length > 0, 'Your text field should have a placeholder attribute.')",
"assert($('input').attr('placeholder') === 'cat photo URL', 'Your placeholder field should have the value of \"cat photo URL\".')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aede08830",
"name": "Waypoint: Create a Form Element",
"difficulty": 0.040,
"description": [
"Wrap your text field in a <form>
element. Add the action=\"/submit-cat-photo\"
attribute to this form element.",
"You can build web forms that actually submit data to a server using nothing more than pure HTML. You can do this by specifying an action on your form
element.",
"For example: <form action=\"/url-where-you-want-to-submit-form-data\"></form>
"
],
"tests": [
"assert($('form').length > 0, 'Wrap your text input element within a form
element.')",
"assert($('form').attr('action'), 'Your form
element should have an action
attribute.')",
"assert(editor.match(/<\\/form>/g), 'Make sure your form
elements has a closing tag.')",
"assert(editor.match(/\\/submit-cat-photo/ig), 'Make sure your form
action is set to /submit-cat-photo
.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedd08830",
"name": "Waypoint: Add a Submit Button to a Form",
"difficulty": 0.041,
"description": [
"Add a submit button to your form
element with type \"submit\" and \"Submit\" as its text.",
"Let's add a submit button to your form. Clicking this button will send the data from your form to the URL you specified with your form's action
attribute.",
"Here's an example submit button: <button type='submit'>this button submits the form</button>
"
],
"tests": [
"assert($('form').children('button').length > 0, 'Your form should have a button inside it.')",
"assert($('button').attr('type') === 'submit', 'Your submit button should have be of input type \"submit\".')",
"assert($('button').text().match(/submit/gi), 'Your submit button should have the text \"submit\".')",
"assert(editor.match(/<\\/button>/g), 'Make sureyour button
element has a closing tag.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedc08830",
"name": "Waypoint: Use HTML5 to Require a Field",
"difficulty": 0.042,
"description": [
"Make it required for your user to input text into your form before being able to submit it.",
"You can require your user to complete specific form fields before they will be able to submit your form.",
"For example, if you wanted to make a text input field required, you can just add the word \"required\" within your input
element use: <input type='text' required>
"
],
"tests": [
"assert($('input').prop('required'), 'Your text field should have the property of being required.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08834",
"name": "Waypoint: Create a Set of Radio Buttons",
"difficulty": 0.043,
"description": [
"Add to your form a pair of radio buttons
that are wrapped in label
elements and share a name
attribute, with the options of \"indoor\" and \"outdoor\".",
"You can use radio buttons
for questions where you want the user to only give you one answer.",
"Radio buttons are a type of input
.",
"Radio buttons should be wrapped within label
elements.",
"All related radio buttons should have the same name
attribute.",
"Here's an example of a radio button: <label><input type='radio' name='indoor-outdoor'> Indoor</label>
"
],
"tests": [
"assert($('input[type=\"radio\"]').length > 1, 'Your webpage should have two radio button elements.')",
"assert($('input[type=\"radio\"]:nth-child(1)').attr('name') === 'indoor-outdoor', 'Give your radio buttons the name
attribute of \"indoor-outdoor\".')",
"assert($('label').length > 1, 'Each of your two radio button elements should be wrapped in a label element.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08835",
"name": "Waypoint: Create a Set of Checkboxes",
"difficulty": 0.044,
"description": [
"Add to your form a set of three checkbox
elements that are wrapped in label
elements and share the same name
attribute.",
"Forms commonly use checkbox
elements for questions that may have more than one answer.",
"For example: <label><input type='checkbox' name='personality'> Loving</label>
"
],
"tests": [
"assert($('input[type=\"checkbox\"]').length > 2, 'Your webpage should have three checkbox elements.')",
"assert($('label:has(input[type=\"checkbox\"])').length > 2, 'Each of your three checkbox elements should be wrapped in a label element.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aede18835",
"name": "Waypoint: Clean up your form using Linebreaks",
"difficulty": 0.045,
"description": [
"Clean up your form by adding linebreaks between form elements.",
"Remember that you can create a linebreak element by using the code: <br>
"
],
"tests": [
"assert($('br').length > 1, 'Add at least 2 line breaks to visually separate your form elements.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedd08835",
"name": "Waypoint: Check Radio Buttons and Checkboxes by Default",
"difficulty": 0.046,
"description": [
"Set the first of your radio buttons and the first of your checkboxes to both be checked by default.",
"You set a checkbox or radio button to be checked by default using the checked
attribute.",
"To do this, just add the word \"checked\" to the inside of an input element. For example, <input type='radio' name='test-name' checked>
."
],
"tests": [
"assert($('input[type=\"radio\"]').prop('checked'), 'Your first radio button on your form should be checked by default.');",
"assert($('input[type=\"checkbox\"]').prop('checked'), 'Your first checkbox on your form should be checked by default.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aede08835",
"name": "Waypoint: Wrap Many Elements within a Div Element",
"difficulty": 0.047,
"description": [
"Wrap your \"Things cats love\" and \"Things cats hate\" lists all within a single div
element.",
"The div
element, or \"Division\" element, is a general purpose container for other elements.",
"The div
element is probably the most commonly used HTML element of all. It's useful for assigning classes down to all the elements that it contains.",
"Just like any other non-self-closing element, you can open a div
element with <div>
and close it on another line with </div>
.",
"Try putting your opening div
tag above your \"Things cats love\" p
element and your closing div
tag after your closing ol
tag so that both of your lists are within one div."
],
"tests": [
"assert($('div').children('ol').length > 0, 'Wrap your ol
element inside your div
element.')",
"assert($('div').children('p').length > 1, 'Wrap your p
element inside your div
element.')",
"assert($('div').children('ul').length > 0, 'Wrap your ul
element inside your div
element.')",
"assert(editor.match(/<\\/div>/g) && editor.match(/<\\/div>/g).length === editor.match(//g).length, 'Make sureyour div
element has a closing tag.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"Things cats love:
",
"",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
"Top 3 things cats hate:
",
"",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
"",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aede07836",
"name": "Waypoint: Give a Background Color to a Div Element",
"difficulty": 0.048,
"description": [
"Create a class called \"gray-background\" with the background color of gray. Assign this class to your div
element.",
"You can set an element's background color with the \"background-color\" attribute.",
"For example, if you wanted an element's background color to be \"green\", you'd use .green-background { background-color: green; }
."
],
"tests": [
"assert($('div').hasClass('gray-background'), 'Give your div
element the class \"gray-background\".')",
"assert($('.gray-background').css('background-color') === 'rgb(128, 128, 128)', 'Your div
element should have a gray background.')"
],
"challengeSeed": [
"",
"",
"",
"CatPhotoApp
",
"",
"Click here for cat photos.
",
"",
"
",
"",
"",
" Things cats love:
",
" ",
" - cat nip
",
" - laser pointers
",
" - lasagna
",
"
",
" Top 3 things cats hate:
",
" ",
" - flea treatment
",
" - thunder
",
" - other cats
",
"
",
"",
"",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad88fee1348bd9aedf08825",
"name": "Waypoint: Adjusting the Padding of an Element",
"difficulty": 0.064,
"description": [
"These next few Waypoints will give you a brief tour of three important aspects of the space surrounding HTML elements: padding
, margin
, and border
. Change the padding
of your green box to match that of your red box.",
"An element's padding
controls the amount of space between the element and its border
.",
"Here, we can see that the green box and the red box are nested within the yellow box. Note that the red box has more padding
than the green box.",
"When you increase the green box's padding
, it will increase the distance between the text \"padding\" and the border around it."
],
"tests": [
"assert($('.green-box').css('padding-top') === '20px', 'Your green-box
class should give elements 20px of padding.')"
],
"challengeSeed": [
"",
"margin
",
"",
"",
" padding
",
" padding
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08822",
"name": "Waypoint: Adjust the Margin of an Element",
"difficulty": 0.065,
"description": [
"Change the margin
of the green box to match that of the red box.",
"An element's margin
controls the amount of space between an element's border
and surrounding elements.",
"Here, we can see that the green box and the red box are nested within the yellow box. Note that the red box has more margin
than the green box, making it appear smaller.",
"When you increase the green box's margin
, it will increase the distance between its border and surrounding elements."
],
"tests": [
"assert($('.green-box').css('margin-top') === '20px', 'Your green-box
class should give elements 20px of margin.')"
],
"challengeSeed": [
"",
"margin
",
"",
"",
" padding
",
" padding
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08823",
"name": "Waypoint: Add a Negative Margin to an Element",
"difficulty": 0.066,
"description": [
"Change the margin
of the green box to a negative value, so it fills the entire horizontal width of the yellow box around it.",
"An element's margin
controls the amount of space between an element's border
and surrounding elements.",
"If you set an element's margin to a negative value, the element will grow larger.",
"Try to set the margin to a negative value like the one for the red box."
],
"tests": [
"assert($('.green-box').css('margin-top') === '-15px', 'Your green-box
class should give elements -15px of margin.')"
],
"challengeSeed": [
"",
"",
"",
" padding
",
" padding
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08824",
"name": "Waypoint: Add Different Padding to Each Side of an Element",
"difficulty": 0.067,
"description": [
"Give the green box a padding of 40 pixels on its top and left side, but only 20 pixels on its bottom and right side.",
"Sometimes you will want to customize an element so that it has different padding on each of its sides.",
"CSS allows you to control the padding of an element on all four sides with padding-top
, padding-right
, padding-bottom
, and padding-left
attributes."
],
"tests": [
"assert($('.green-box').css('padding-top') === '40px', 'Your green-box
class should give the top of elements 40px of padding.')",
"assert($('.green-box').css('padding-left') === '40px', 'Your green-box
class should give the left of elements 40px of padding.')",
"assert($('.green-box').css('padding-right') === '20px', 'Your green-box
class should give the right of elements 20px of padding.')",
"assert($('.green-box').css('padding-bottom') === '20px', 'Your green-box
class should give the bottom of elements 20px of padding.')"
],
"challengeSeed": [
"",
"margin
",
"",
"",
" padding
",
" padding
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1248bd9aedf08824",
"name": "Waypoint: Add Different Margins to Each Side of an Element",
"difficulty": 0.068,
"description": [
"Give the green box a margin of 40 pixels on its top and left side, but only 20 pixels on its bottom and right side.",
"Sometimes you will want to customize an element so that it has a different margin on each of its sides.",
"CSS allows you to control the margin of an element on all four sides with margin-top
, margin-right
, margin-bottom
, and margin-left
attributes."
],
"tests": [
"assert($('.green-box').css('margin-top') === '40px', 'Your green-box
class should give the top of elements 40px of margin.')",
"assert($('.green-box').css('margin-left') === '40px', 'Your green-box
class should give the left of elements 40px of margin.')",
"assert($('.green-box').css('margin-right') === '20px', 'Your green-box
class should give the right of elements 20px of margin.')",
"assert($('.green-box').css('margin-bottom') === '20px', 'Your green-box
class should give the bottom of elements 20px of margin.')"
],
"challengeSeed": [
"",
"margin
",
"",
"",
" padding
",
" padding
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08826",
"name": "Waypoint: Use Clockwise Notation to Specify the Padding of an Element",
"difficulty": 0.069,
"description": [
"Use Clockwise Notation
to give the \".green-box\" class a padding of 40 pixels on its top and left side, but only 20 pixels on its bottom and right side.",
"Instead of specifying an element's padding-top
, padding-right
, padding-bottom
, and padding-left
attributes, you can specify them all in one line, like this: padding: 10px 20px 10px 20px;
.",
"These four values work like a clock: top, right, bottom, left, and will produce the exact same result as using the side-specific padding instructions."
],
"tests": [
"assert($('.green-box').css('padding-top') === '40px', 'Your green-box
class should give the top of elements 40px of padding.')",
"assert($('.green-box').css('padding-right') === '20px', 'Your green-box
class should give the right of elements 20px of padding.')",
"assert($('.green-box').css('padding-bottom') === '20px', 'Your green-box
class should give the bottom of elements 20px of padding.')",
"assert($('.green-box').css('padding-left') === '40px', 'Your green-box
class should give the left of elements 40px of padding.')"
],
"challengeSeed": [
"",
"margin
",
"",
"",
" padding
",
" padding
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
},
{
"_id": "bad87fee1348bd9aedf08726",
"name": "Waypoint: Use Clockwise Notation to Specify the Margin of an Element",
"difficulty": 0.070,
"description": [
"Let's try this again, but with margin
this time. Use Clockwise Notation
to give an element a margin of 40 pixels on its top and left side, but only 20 pixels on its bottom and right side.",
"Instead of specifying an element's margin-top
, margin-right
, margin-bottom
, and margin-left
attributes, you can specify them all in one line, like this: margin: 10px 20px 10px 20px;
.",
"These four values work like a clock: top, right, bottom, left, and will produce the exact same result as using the side-specific margin instructions."
],
"tests": [
"assert($('.green-box').css('margin-top') === '40px', 'Your green-box
class should give the top of elements 40px of margin.')",
"assert($('.green-box').css('margin-right') === '20px', 'Your green-box
class should give the right of elements 20px of margin.')",
"assert($('.green-box').css('margin-bottom') === '20px', 'Your green-box
class should give the bottom of elements 20px of margin.')",
"assert($('.green-box').css('margin-left') === '40px', 'Your green-box
class should give the left of elements 40px of margin.')"
],
"challengeSeed": [
"",
"margin
",
"",
"",
" padding
",
" padding
",
""
],
"challengeType": 0,
"nameCn": "",
"descriptionCn": [],
"nameFr": "",
"descriptionFr": [],
"nameRu": "",
"descriptionRu": [],
"nameEs": "",
"descriptionEs": [],
"namePt": "",
"descriptionPt": []
}
]
}