Can someone tell me what I'm doing wrong here?
See original GitHub issueChallenge Create a Set of Checkboxes has an issue.
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36
.
Please describe how to reproduce this issue, and include links to screenshots if possible.
My code:
<link href="https://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" alt="A cute orange cat lying on its back. " src="https://bit.ly/fcc-relaxing-cat"></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>
<input type="text" placeholder="cat photo URL" required>
<lable><input type="checkbox" name="personality">1</lable>
<lable><input type="checkbox" name="personality">2</lable>
<lable><input type="checkbox" name="personality">3</lable>
<button type="submit">Submit</button>
</form>
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
What am I doing wrong here? - Quora
It shows you that you choose every time to feel what you feel. Aside from thinking a guy is gonna pull out a...
Read more >Can someone tell me what I'm doing wrong here ... - Reddit
First time using robot arms, never considered the orientation. I rotated them to match and now they all run, picking stuff from the...
Read more >Tell Me What I'm Doing Wrong - Karen Kosowski - Spotify
Popular Releases by Karen Kosowski. Meeting The Future At Full Speed. Album • 2008. Wish On A Star. Album • 2006. Out Here...
Read more >Nico & Vinz - Am I Wrong [Official Music Video] - YouTube
Stream and download the single DON'T BE AFRAID here : https://umg.lnk.to/DontBeAfraid'CORNERSTONE' AVAILABLE NOWiTunes: ...
Read more >half·alive - What's Wrong (Official Video) - YouTube
... the shelf so tell me how to live in tension 'cause every could 've been kills when living here has been hell...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@somekoreanguy For starters, shouldn’t it be
label
instead oflable
?@somekoreanguy thanks for the issue but as @Manish-Giri has pointed out, checking spelling would be beneficial to passing the challenge. If you get stuck or have questions with a challenge in the future, please first ask questions to the Help Room. Happy coding!