add solution (#28341)

This commit is contained in:
lucielchoi707
2019-03-17 04:08:51 +08:00
committed by Jaka Kranjc
parent 0cf2863b5c
commit a2ee27a17f

View File

@ -71,6 +71,28 @@ tests:
<section id='solution'>
```js
// solution required
<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></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">
<input type="text" placeholder="cat photo URL">
<button type="submit">Submit</button>
</form>
</main>
```
</section>