question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Improve instructions: Link to External Pages with Anchor Elements

See original GitHub issue

Challenge 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>
  1. Normal text in the p element
<p>Here's a ... for you to follow.</p>
  1. Anchor tag (requires a closing tag)
<a></a>
  1. href is an anchor tag attribute
<a href="http://freecodecamp.org"></a>
  1. 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>
  1. Final Render

Here's a link to freecodecamp.org for you to follow.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:14 (11 by maintainers)

github_iconTop GitHub Comments

2reactions
raisedadeadcommented, Jan 8, 2018

Bonus, if you or anyone else is looking for a contribution do the similar changes for another challenge reported in #16335

1reaction
Ryan-EDcommented, Jan 3, 2018

Is anybody working on this? I would love to give it a shot. I’ve never contributed to open source before

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found