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 trialRuh Ullah Shah
Courses Plus Student 5,111 PointsDifference 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
Hossam Khalifa
17,200 PointsThese 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>
Ruh Ullah Shah
Courses Plus Student 5,111 PointsGreat. Thanks for the clarification!!
Ruh Ullah Shah
Courses Plus Student 5,111 PointsGreat. Thanks for the clarification!!
Michael Hulet
47,913 PointsMichael Hulet
47,913 PointsFYI,
<link/>
isn't solely used for stylesheets. It can also do a lot more