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 HTML Basics Structuring Your Content Grouping Content with <main> and <div>

I added a cite attribute to the <blockquote> tag but nothing changed on the page

When I add a cite attribute with a URL value to the opening <blockquote> tag like this:

 <blockquote cite="https://www.facebook.com/zuck/posts/10101319050523971">
     "Virtual reality was once the dream of science fiction. But the internet was also once a 
     dream, and so were computers and smartphones. The future is coming." - Mark 
     Zuckerberg
 </blockquote>

On the webpage it doesn't show anything clickable that would take me to the URL in the cite attribute.

Is this how it's supposed to be or am I missing something?

1 Answer

Had the same question and saw yours. Googled it. Apparently you're not missing anything :)

https://www.w3schools.com/tags/att_blockquote_cite.asp

"The cite attribute does not render as anything special in any of the major browsers, but it can be used by search engines to get more information about the quotation."

Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

Moderator Note: Moved response from Comment section to Answer section.

ahh I see. Thank you so much George