The freeCodeCamp Contribution Page shows you how and where you can contribute to freeCodeCamp's community and growth.
``` The `` attribute is supported by all browsers. ### Syntax URL: The URL of the link. Possible values: - An absolute URL - points to another web site (like ) - A relative URL - points to a file within a web site (like href="index.html") - Link to an element with a specified id within the page (like hred="#id-name") #### More attributes: `hreflang` : Specifies the language of the linked resource. `target` : Specifies the context in which the linked resource will open. `title` : Defines the title of a link, which appears to the user as a tooltip. ### Examples ```html This is a dead link This is a live link to freeCodeCamp more with a href attribute ``` ### In-page anchors It's also possible to set an anchor to a certain place on the page. To do this, you should first place an `` tag at the location and include the necessary attribute `name` with any keyword description in it, like this: ```html ``` A description between tags is not required. You can now place a link leading to this anchor at any place on the same page. To do this, you should use the `` tag with the necessary attribute "href" with symbol # (sharp) and key-word description of the anchor, like this: ```html Go to Top ``` ### Image Links The `` may also be applied to images and other HTML elements. ### Example ```html