Reputation: 13018
How can I achieve something simple as this in HTML ?
<a href="#"><< Back to Main Page</a>
Upvotes: 4
Views: 4041
Reputation: 2975
Use an entity: <
. Others used often for similar cases is «
(«).
Upvotes: 2
Reputation: 17434
The double chevron is called «
for left and »
for right.
<a href="#">« Back to Main Page</a>
Upvotes: 3
Reputation: 93020
You need to HTML encode it:
<a href="#"><< Back to Main Page</a>
Upvotes: 6
Reputation: 9440
http://htmlhelp.com/reference/html40/entities/special.html
SO: <
-->
<a href="#"><< Bla Bla</a>
Upvotes: 4