My links won't bring me to website only show blank page
a href=”www.codeacademy.com"> Find info here a href=”www.youtube.com"> <img src=”http://images4.wikia.nocookie.net/__cb20130116234930/imotwom/images/f/fa/Santa-Hat.png“</a I removed the < since it would not show ! what did i do wrong
Answer 5135328392930962d400005a
It’s a simple mistake to make but because your linking this to a website you need to add http://
in order for it to work because without adding that it tries to direct you to
http://www.tutorialpartofsite.com/www.youtube.com"
this happens because the html thinks the link is internal which it isn’t it’s external so you need to tell it this.
internal links would be
<a href="folder/this.html">This Page Is on the same server as me</a>
Which when clicked would take you to http://mywebsite.com/folder/this.html
External links must be
<a href="http://www.codeacademy.com/folder/this.html">This Page is on a different website than me</a>
So when clicked it takes you to that exact link
just add http://
to the start of the url and it should work
Hope this helped :)
1 comments
thanks man ! real help :)
Popular free courses
- Free course
Learn SQL
In this SQL course, you'll learn how to manage large datasets and analyze real data using the standard data management language.Beginner Friendly4 Lessons - Free course
Learn JavaScript
Learn how to use JavaScript — a powerful and flexible programming language for adding website interactivity.Beginner Friendly11 Lessons - Free course
Learn HTML
Start at the beginning by learning HTML basics — an important foundation for building and editing web pages.Beginner Friendly6 Lessons