[Django]-Embed an external link in django app

15👍

Whenever you pass an external link to the <a href=''> tag, always use http .
So it will be like:

<a href="http://www.google.com">Search More</a>

5👍

You forgot the protocol:

<a href="http://www.google.com">Search More</a>

Leave a comment