Tests pass when <strong> is used to wrap entire <p> element in challenge Applied Visual Design: Use the strong Tag to Make Text Bold
See original GitHub issueDescribe your problem and - if possible - how to reproduce it
Tests pass when is used to wrap entire element in challenge “Applied Visual Design: Use the strong Tag to Make Text Bold” The following will pass test:
<p><strong>Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University</strong>.</p>
Only the following should pass test:
<p>Google was founded by Larry Page and Sergey Brin while they were Ph.D. students at <strong>Stanford University</strong>.</p>
Add a Link to the page with the problem
Tell us about your browser and operating system
If possible, add a screenshot here
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Applied Visual Design - Use the strong Tag to Make Text Bold
Today we use the strong tag to make text bold as part of this curriculum on Applied Visual Design which is generously provided...
Read more >Use the strong Tag to Make Text Bold Applied Visual Design ...
FOLLOW ALONG LINK: https://www.freecodecamp.org/learn/responsive-web-design/ applied - visual - design / use -the- strong - tag -to- make - text -boldCheck ...
Read more >freeCodeCamp's Applied Visual Design, Use the Strong Tag ...
In this lesson from freeCodeCamp's Applied Visual Design section we look at the strong tag. We learn that we can wrap a strong...
Read more >Applied Visual Design: Use the strong Tag to Make Text Bold
Your code should add one strong tag to the markup. The strong tag should be inside the p tag. The strong tag should...
Read more >Myprogmaster - codecamp challenge | Facebook
Wrap a strong tag. Tests pass when <strong> is used to wrap entire <p> element in challenge Applied Visual Design: Use the strong...
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
@clrobards It will pass if you move the
<strong>
one character to the right. In other words, you will need to add a space between the wordat
and the<strong>
, and delete the space between<strong>
andStanford University
.Instead of:
I was also stuck for a minute, be careful with space and full stop.