Reputation: 74540
Is there a way I can embed a link back to Google Chrome on my website? I mean an embeddable image link.
Upvotes: 1
Views: 272
Reputation: 588
You want to embed the Google Chrome logo on your page and when the user clicks the it they get redirected to the Google Chrome home page? Try this:
<a href="http://www.google.com/chrome/intl/en/landing_chrome_mac.html?hl=en">
<img src="https://www.google.com/intl/en/images/logos/chrome_logo.gif" alt="Google Chrome" />
</a>
Upvotes: 3