Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website Creating HTML Content Use the Navigation Element

Difference between different link tags in HTML such as <a> & <link>?

What is the difference between <a> & <link>? Under what scenarios are they used?

3 Answers

These are two different things. The anchor element is used to link to another page or to a certain part of the page if you use its ID.

<a href="index.html">Home</a>

And The link tag defines a link between a document and an external resource.

The link tag is used to link to external style sheets.

<head>
<link rel="stylesheet" type="text/css" href="theme.css">
</head>

FYI, <link/> isn't solely used for stylesheets. It can also do a lot more

Great. Thanks for the clarification!!

Great. Thanks for the clarification!!