Anchor - logaegae/project_study GitHub Wiki

Anchor

  • <a>tag : Defines a hyperlink.

  • <a>tag also can include <img> tag.

  • Anchor example

Color

style>
a:link    {color:green; background-color:transparent; text-decoration:none}
a:visited {color:pink; background-color:transparent; text-decoration:none}
a:hover   {color:red; background-color:transparent; text-decoration:underline}
a:active  {color:yellow; background-color:transparent; text-decoration:underline}
</style> 

Target

_blank     Opens the linked document in a new window or tab 
_self      Opens the linked document in the same frame as it was clicked (this is default) 
_parent    Opens the linked document in the parent frame 
_top       Opens the linked document in the full body of the window 
framename  Opens the linked document in a named frame 

Create a Bookmark

 <a href="#C4">Jump to Chapter 4</a>
⚠️ **GitHub.com Fallback** ⚠️