Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Why is my link not working in my react app?

I’ve added links many times in React apps and have never run into this issue. The page displays the image, but the link isn’t rendering. Is there something wrong with my syntax?
<a href src="https://soundcloud.com/user-112780443/tracks" target="_blank" rel="noreferrer"><img className="streamers__links-icons" src="./Images/Soundcloud_Icon.png" alt="Soundcloud" /></a>

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Specify the URL in the href attribute.

change :

<a href src="https://soundcloud.com/user-112780443/tracks"...>

to :

<a href="https://soundcloud.com/user-112780443/tracks"....>
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading