Improve instructions: Link to External Pages with Anchor Elements
See original GitHub issueChallenge Name
Basic HTML and HTML5: Link to External Pages with Anchor Elements https://beta.freecodecamp.org/en/challenges/basic-html-and-html5/link-to-external-pages-with-anchor-elements
Issue Description
The image displaying the anchor elements is smashed together. I think it should be broken into smaller parts and displayed with regular text like below:
Let’s break down the example:
<p>Here's` a <a href="http://freecodecamp.org"> link to freecodecamp.org</a> for you to follow.</p>
- Normal text in the p element
<p>Here's a ... for you to follow.</p>
- Anchor tag (requires a closing tag)
<a></a>
- href is an anchor tag attribute
<a href="http://freecodecamp.org"></a>
- The text within the anchor tags,
link to freecodecamp.org
, will display a link to click
<p>Here's` a <a href="http://freecodecamp.org"> link to freecodecamp.org</a></p>
- Final Render
Here's a link to freecodecamp.org for you to follow.
Issue Analytics
- State:
- Created 6 years ago
- Comments:14 (11 by maintainers)
Top Results From Across the Web
HTML Anchors: Here's How To Create Links For Fast ...
Learn how to create HTML hyperlinks. This guide covers the anchor element and all of it's attributes.
Read more >Link to External Pages with Anchor Elements (anchor)
Link to External Pages with Anchor Elements (anchor) · Remove the extra spaces starting from <a href=""> and the anchor should end with...
Read more >Link to External Pages with Anchor Elements, freeCodeCamp ...
In this challenge we learn how to link to external pages using anchor elements. Anchor elements are usually those clickable words on a...
Read more ><a>: The Anchor element - HTML: HyperText Markup Language
The <a> HTML element (or anchor element), with its href attribute, creates a hyperlink to web pages, files, email addresses, locations in ...
Read more >link-to-external-pages-with-anchor-elements - freeCodeCamp
浏览器将显示文本 this links to freecodecamp.org ,这是一个可点击的链接。 你可以通过这个链接访问 https://www.freecodecamp.org 。 --instructions--. 创建一个内容 ...
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 Free
Top 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
Bonus, if you or anyone else is looking for a contribution do the similar changes for another challenge reported in #16335
Is anybody working on this? I would love to give it a shot. I’ve never contributed to open source before