start purging the br challenges
This commit is contained in:
@ -137,49 +137,6 @@
|
|||||||
"Du kannst ein <code>p</code> Element so erzeugen: <code><p>Ich bin ein p Element!</p></code>"
|
"Du kannst ein <code>p</code> Element so erzeugen: <code><p>Ich bin ein p Element!</p></code>"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"id": "bad87fee1348bd9aeaf08801",
|
|
||||||
"name": "Waypoint: Visually Separate Elements with Line Breaks",
|
|
||||||
"dashedName": "waypoint-visually-separate-elements-with-line-breaks",
|
|
||||||
"difficulty": 0.004,
|
|
||||||
"description": [
|
|
||||||
"Add a <code>br</code> element to your page, preferably between two of your elements.",
|
|
||||||
"<code>br</code> elements, also known as \"line break\" elements, can be created with <code><br></code>.",
|
|
||||||
"Note that <code><br></code> 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 <code>br</code> element to your page preferably between two of your elements.')"
|
|
||||||
],
|
|
||||||
"challengeSeed": [
|
|
||||||
"<h1>Hello World</h1>",
|
|
||||||
"<h2>CatPhotoApp</h2>",
|
|
||||||
"<p>Hello Paragraph</p>"
|
|
||||||
],
|
|
||||||
"challengeType": 0,
|
|
||||||
"nameCn": "",
|
|
||||||
"descriptionCn": [],
|
|
||||||
"nameFr": "",
|
|
||||||
"descriptionFr": [],
|
|
||||||
"nameRu": "",
|
|
||||||
"descriptionRu": [],
|
|
||||||
"nameEs": "Waypoint: Separa Elementos Visualmente con Saltos de Línea",
|
|
||||||
"descriptionEs": [
|
|
||||||
"Agrega un <code>salto de línea</code> entre los elementos <code><h2></code> y <code><p></code>.",
|
|
||||||
"Puedes crear un elemento de salto de línea con <code><br/></code>.",
|
|
||||||
"Fíjate que <code><br/></code> no tiene etiqueta de cierre. Es un elemento <code>auto-cerrado</code>. ¿Ves cómo un / precede el signo de cierre (>)?",
|
|
||||||
"Luego te encontrarás con otras etiquetas de elementos <code>auto-cerrados</code>."
|
|
||||||
],
|
|
||||||
"namePt": "",
|
|
||||||
"descriptionPt": [],
|
|
||||||
"nameDe": "Waypoint: Trenne Elemente visuell mit Zeilenumbrüchen",
|
|
||||||
"descriptionDe": [
|
|
||||||
"Füge ein <code>br</code> Element zu deiner Seite hinzu, am besten zwischen zwei anderen Elementen.",
|
|
||||||
"<code>br</code> Elemente – auch Zeilenumbrüche oder \"line breaks\" genannt – können mit <code><br></code> erstellt werden.",
|
|
||||||
"Beachte, dass <code><br></code> keinen schließenden Tag hat. Es ist ein selbst schließendes oder \"self-closing\" Element.",
|
|
||||||
"Du wirst bald mehr selbstschließende Elemente kennenlernen."
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "bad87fee1348bd9aedf08802",
|
"id": "bad87fee1348bd9aedf08802",
|
||||||
"name": "Waypoint: Uncomment HTML",
|
"name": "Waypoint: Uncomment HTML",
|
||||||
@ -203,8 +160,6 @@
|
|||||||
"",
|
"",
|
||||||
"<h2>CatPhotoApp</h2>",
|
"<h2>CatPhotoApp</h2>",
|
||||||
"",
|
"",
|
||||||
"<br>",
|
|
||||||
"",
|
|
||||||
"<p>Hello Paragraph</p>",
|
"<p>Hello Paragraph</p>",
|
||||||
"-->"
|
"-->"
|
||||||
],
|
],
|
||||||
@ -254,8 +209,6 @@
|
|||||||
"",
|
"",
|
||||||
"<h2>CatPhotoApp</h2>",
|
"<h2>CatPhotoApp</h2>",
|
||||||
"",
|
"",
|
||||||
"<br>",
|
|
||||||
"",
|
|
||||||
"<p>Hello Paragraph</p>",
|
"<p>Hello Paragraph</p>",
|
||||||
"-->"
|
"-->"
|
||||||
],
|
],
|
||||||
@ -301,8 +254,6 @@
|
|||||||
"",
|
"",
|
||||||
"<h2>CatPhotoApp</h2>",
|
"<h2>CatPhotoApp</h2>",
|
||||||
"",
|
"",
|
||||||
"<br>",
|
|
||||||
"",
|
|
||||||
"<p>Hello Paragraph</p>"
|
"<p>Hello Paragraph</p>"
|
||||||
],
|
],
|
||||||
"challengeType": 0,
|
"challengeType": 0,
|
||||||
@ -337,14 +288,13 @@
|
|||||||
"dashedName": "waypoint-delete-html-elements",
|
"dashedName": "waypoint-delete-html-elements",
|
||||||
"difficulty": 0.008,
|
"difficulty": 0.008,
|
||||||
"description": [
|
"description": [
|
||||||
"Delete your <code>h1</code> and <code>br</code> elements so we can simplify our view.",
|
"Delete your <code>h1</code> element so we can simplify our view.",
|
||||||
"Our phone doesn't have much vertical space.",
|
"Our phone doesn't have much vertical space.",
|
||||||
"Let's remove the unnecessary elements so we can start building our CatPhotoApp."
|
"Let's remove the unnecessary elements so we can start building our CatPhotoApp."
|
||||||
],
|
],
|
||||||
"tests": [
|
"tests": [
|
||||||
"assert(($('h1').length == 0), 'Delete your <code>h1</code> element.')",
|
"assert(($('h1').length == 0), 'Delete your <code>h1</code> element.')",
|
||||||
"assert(($('h2').length > 0), 'Leave your <code>h2</code> element on the page.')",
|
"assert(($('h2').length > 0), 'Leave your <code>h2</code> element on the page.')",
|
||||||
"assert(($('br').length == 0), 'Delete your <code>br</code> element.')",
|
|
||||||
"assert(($('p').length > 0), 'Leave your <code>p</code> element on the page.')"
|
"assert(($('p').length > 0), 'Leave your <code>p</code> element on the page.')"
|
||||||
],
|
],
|
||||||
"challengeSeed": [
|
"challengeSeed": [
|
||||||
@ -352,8 +302,6 @@
|
|||||||
"",
|
"",
|
||||||
"<h2>CatPhotoApp</h2>",
|
"<h2>CatPhotoApp</h2>",
|
||||||
"",
|
"",
|
||||||
"<br>",
|
|
||||||
"",
|
|
||||||
"<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>"
|
"<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>"
|
||||||
],
|
],
|
||||||
"challengeType": 0,
|
"challengeType": 0,
|
||||||
@ -373,7 +321,7 @@
|
|||||||
"descriptionPt": [],
|
"descriptionPt": [],
|
||||||
"nameDe": "Waypoint: Entferne HTML Elemente",
|
"nameDe": "Waypoint: Entferne HTML Elemente",
|
||||||
"descriptionDe": [
|
"descriptionDe": [
|
||||||
"Lösche die Elemente <code>h1</code> und <code>br</code>, damit wir etwas Ordnung schaffen.",
|
"Lösche die Elemente <code>h1</code>, damit wir etwas Ordnung schaffen.",
|
||||||
"Unser Smartphone hat nicht sehr viel vertikalen Raum.",
|
"Unser Smartphone hat nicht sehr viel vertikalen Raum.",
|
||||||
"Lass uns die unwichtigen Elemente entfernen, damit wir unsere CatPhotoApp bauen können."
|
"Lass uns die unwichtigen Elemente entfernen, damit wir unsere CatPhotoApp bauen können."
|
||||||
]
|
]
|
||||||
@ -2186,91 +2134,6 @@
|
|||||||
"Als Beispiel: <code><label><input type='checkbox' name='personality'> liebevoll</label></code>."
|
"Als Beispiel: <code><label><input type='checkbox' name='personality'> liebevoll</label></code>."
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"id": "bad87fee1348bd9aede18835",
|
|
||||||
"name": "Waypoint: Clean up your form using Linebreaks",
|
|
||||||
"dashedName": "waypoint-clean-up-your-form-using-linebreaks",
|
|
||||||
"difficulty": 0.036,
|
|
||||||
"description": [
|
|
||||||
"Clean up your form by adding linebreaks between form elements.",
|
|
||||||
"Remember that you can create a linebreak element by using the code: <code><br></code>."
|
|
||||||
],
|
|
||||||
"tests": [
|
|
||||||
"assert($('br').length > 1, 'Add at least 2 line breaks to visually separate your form elements.')"
|
|
||||||
],
|
|
||||||
"challengeSeed": [
|
|
||||||
"<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>",
|
|
||||||
"<style>",
|
|
||||||
" .red-text {",
|
|
||||||
" color: red;",
|
|
||||||
" }",
|
|
||||||
"",
|
|
||||||
" h2 {",
|
|
||||||
" font-family: Lobster, Monospace;",
|
|
||||||
" }",
|
|
||||||
"",
|
|
||||||
" p {",
|
|
||||||
" font-size: 16px;",
|
|
||||||
" font-family: Monospace;",
|
|
||||||
" }",
|
|
||||||
"",
|
|
||||||
" .thick-green-border {",
|
|
||||||
" border-color: green;",
|
|
||||||
" border-width: 10px;",
|
|
||||||
" border-style: solid;",
|
|
||||||
" border-radius: 50%;",
|
|
||||||
" }",
|
|
||||||
"",
|
|
||||||
" .smaller-image {",
|
|
||||||
" width: 100px;",
|
|
||||||
" }",
|
|
||||||
"</style>",
|
|
||||||
"",
|
|
||||||
"<h2 class='red-text'>CatPhotoApp</h2>",
|
|
||||||
"",
|
|
||||||
"<p>Click here for <a href='#'>cat photos</a>.</p>",
|
|
||||||
"",
|
|
||||||
"<a href='#'><img class='smaller-image thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
|
||||||
"",
|
|
||||||
"<p>Things cats love:</p>",
|
|
||||||
"<ul>",
|
|
||||||
" <li>cat nip</li>",
|
|
||||||
" <li>laser pointers</li>",
|
|
||||||
" <li>lasagna</li>",
|
|
||||||
"</ul>",
|
|
||||||
"<p>Top 3 things cats hate:</p>",
|
|
||||||
"<ol>",
|
|
||||||
" <li>flea treatment</li>",
|
|
||||||
" <li>thunder</li>",
|
|
||||||
" <li>other cats</li>",
|
|
||||||
"</ol>",
|
|
||||||
"<form action=\"/submit-cat-photo\">",
|
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Energetic</label>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
|
||||||
" <button type='submit'>Submit</button>",
|
|
||||||
"</form>"
|
|
||||||
],
|
|
||||||
"challengeType": 0,
|
|
||||||
"nameCn": "",
|
|
||||||
"descriptionCn": [],
|
|
||||||
"nameFr": "",
|
|
||||||
"descriptionFr": [],
|
|
||||||
"nameRu": "",
|
|
||||||
"descriptionRu": [],
|
|
||||||
"nameEs": "",
|
|
||||||
"descriptionEs": [],
|
|
||||||
"namePt": "",
|
|
||||||
"descriptionPt": [],
|
|
||||||
"nameDe": "Waypoint: Strukturiere dein Formular mit Zeilenumbrüchen",
|
|
||||||
"descriptionDe": [
|
|
||||||
"Schaffe ein wenig Ordnung in deinem Formular, indem du Zeilenumbrüche zwischen den Eingabefeldern verwendest.",
|
|
||||||
"Du weißt, Zeilenumbrüche können mit folgendem Code erstellt werden: <code><br></code>"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"id": "bad87fee1348bd9aedd08835",
|
"id": "bad87fee1348bd9aedd08835",
|
||||||
"name": "Waypoint: Check Radio Buttons and Checkboxes by Default",
|
"name": "Waypoint: Check Radio Buttons and Checkboxes by Default",
|
||||||
@ -2334,11 +2197,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Energetic</label>",
|
" <label><input type='checkbox' name='personality'> Energetic</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -2429,11 +2290,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor' checked> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor' checked> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality' checked> Loving</label>",
|
" <label><input type='checkbox' name='personality' checked> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Energetic</label>",
|
" <label><input type='checkbox' name='personality'> Energetic</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -2524,11 +2383,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor' checked> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor' checked> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality' checked> Loving</label>",
|
" <label><input type='checkbox' name='personality' checked> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Energetic</label>",
|
" <label><input type='checkbox' name='personality'> Energetic</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
|
@ -69,11 +69,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -153,11 +151,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -238,11 +234,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -327,11 +321,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -414,11 +406,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -502,11 +492,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -591,11 +579,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -685,11 +671,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -758,7 +742,7 @@
|
|||||||
"<a href='#'><img class='smaller-image thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
"<a href='#'><img class='smaller-image thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
||||||
"",
|
"",
|
||||||
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
||||||
"<br>",
|
|
||||||
"<div class='row'>",
|
"<div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <button class='btn btn-block btn-primary'>Like</button>",
|
" <button class='btn btn-block btn-primary'>Like</button>",
|
||||||
@ -785,11 +769,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -848,7 +830,6 @@
|
|||||||
"<a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
"<a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
||||||
"",
|
"",
|
||||||
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
||||||
"<br>",
|
|
||||||
"<div class='row'>",
|
"<div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <button class='btn btn-block btn-primary'>Like</button>",
|
" <button class='btn btn-block btn-primary'>Like</button>",
|
||||||
@ -875,11 +856,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -934,9 +913,7 @@
|
|||||||
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
||||||
" </div>",
|
" </div>",
|
||||||
"</div>",
|
"</div>",
|
||||||
"<br>",
|
|
||||||
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
||||||
"<br>",
|
|
||||||
"<div class='row'>",
|
"<div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <button class='btn btn-block btn-primary'>Like</button>",
|
" <button class='btn btn-block btn-primary'>Like</button>",
|
||||||
@ -963,11 +940,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -1022,9 +997,7 @@
|
|||||||
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
||||||
" </div>",
|
" </div>",
|
||||||
"</div>",
|
"</div>",
|
||||||
"<br>",
|
|
||||||
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
||||||
"<br>",
|
|
||||||
"<div class='row'>",
|
"<div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
||||||
@ -1051,11 +1024,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -1109,9 +1080,7 @@
|
|||||||
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
||||||
" </div>",
|
" </div>",
|
||||||
"</div>",
|
"</div>",
|
||||||
"<br>",
|
|
||||||
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
||||||
"<br>",
|
|
||||||
"<div class='row'>",
|
"<div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
||||||
@ -1138,11 +1107,9 @@
|
|||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -1197,9 +1164,7 @@
|
|||||||
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
||||||
" </div>",
|
" </div>",
|
||||||
"</div>",
|
"</div>",
|
||||||
"<br>",
|
|
||||||
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
||||||
"<br>",
|
|
||||||
"<div class='row'>",
|
"<div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
||||||
@ -1232,11 +1197,9 @@
|
|||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" <br>",
|
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
" <label><input type='checkbox' name='personality'> Lazy</label>",
|
||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -1292,9 +1255,7 @@
|
|||||||
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
||||||
" </div>",
|
" </div>",
|
||||||
"</div>",
|
"</div>",
|
||||||
"<br>",
|
|
||||||
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
||||||
"<br>",
|
|
||||||
"<div class='row'>",
|
"<div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
||||||
@ -1319,7 +1280,6 @@
|
|||||||
" <li>other cats</li>",
|
" <li>other cats</li>",
|
||||||
"</ol>",
|
"</ol>",
|
||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <br>",
|
|
||||||
" <div class='row'>",
|
" <div class='row'>",
|
||||||
" <div class='col-xs-6'>",
|
" <div class='col-xs-6'>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
@ -1328,7 +1288,6 @@
|
|||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" <br>",
|
|
||||||
" <div class='row'>",
|
" <div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
@ -1340,7 +1299,6 @@
|
|||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' placeholder='cat photo URL' required>",
|
" <input type='text' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit'>Submit</button>",
|
" <button type='submit'>Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
@ -1397,9 +1355,7 @@
|
|||||||
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
" <a href='#'><img class='img-responsive thick-green-border' src='https://bit.ly/fcc-kittens'/></a>",
|
||||||
" </div>",
|
" </div>",
|
||||||
"</div>",
|
"</div>",
|
||||||
"<br>",
|
|
||||||
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
"<img src='http://bit.ly/fcc-kittens2' class='img-responsive'>",
|
||||||
"<br>",
|
|
||||||
"<div class='row'>",
|
"<div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
" <button class='btn btn-block btn-primary'><i class='fa fa-thumbs-up'></i> Like</button>",
|
||||||
@ -1424,7 +1380,6 @@
|
|||||||
" <li>other cats</li>",
|
" <li>other cats</li>",
|
||||||
"</ol>",
|
"</ol>",
|
||||||
"<form action=\"/submit-cat-photo\">",
|
"<form action=\"/submit-cat-photo\">",
|
||||||
" <br>",
|
|
||||||
" <div class='row'>",
|
" <div class='row'>",
|
||||||
" <div class='col-xs-6'>",
|
" <div class='col-xs-6'>",
|
||||||
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Indoor</label>",
|
||||||
@ -1433,7 +1388,6 @@
|
|||||||
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
" <label><input type='radio' name='indoor-outdoor'> Outdoor</label>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" <br>",
|
|
||||||
" <div class='row'>",
|
" <div class='row'>",
|
||||||
" <div class='col-xs-4'>",
|
" <div class='col-xs-4'>",
|
||||||
" <label><input type='checkbox' name='personality'> Loving</label>",
|
" <label><input type='checkbox' name='personality'> Loving</label>",
|
||||||
@ -1445,7 +1399,6 @@
|
|||||||
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
" <label><input type='checkbox' name='personality'> Crazy</label>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" </div>",
|
" </div>",
|
||||||
" <br>",
|
|
||||||
" <input type='text' class='form-control' placeholder='cat photo URL' required>",
|
" <input type='text' class='form-control' placeholder='cat photo URL' required>",
|
||||||
" <button type='submit' class='btn btn-primary'><i class='fa fa-paper-plane'></i> Submit</button>",
|
" <button type='submit' class='btn btn-primary'><i class='fa fa-paper-plane'></i> Submit</button>",
|
||||||
"</form>"
|
"</form>"
|
||||||
|
Reference in New Issue
Block a user