Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

there is no response when i click the Run Tests button after completing challenge #9153

Comments

@mwasif41
Copy link

Challenge Nest an Anchor Element within a Paragraph has an issue.
User Agent is: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.124 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>

<a href="http://www.freecatphotoapp.com">cat photos</a>

<img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat">


<p class="red-text">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 class="red-text">Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
<p>view more <a href="http://www.freecatphotoapp.com">cat photos</a></p>
@BKinahan
Copy link
Contributor

If you scroll down on the left section of the page below the Run Tests button you can see the results of the tests for your code. In this instance, the test Your p element should have the text "View more " (with a space after it). fails because you have a capitalization error.

For help with writing code, please consult the Help chat room. Issues are for reporting bugs with the challenges or website.

Happy coding!

@mwasif41
Copy link
Author

thanks for help :)
i have found the error it was on the coding i was placing another anchor tag while i supposed to use the existing one
thank you 👍

@erictleung
Copy link
Member

@mwasif41@BKinahan thanks for the help diagnosing the issue! Closing this issue as it looks like the issue has been resolved. Happy coding!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment