- 
                Notifications
    
You must be signed in to change notification settings  - Fork 4
 
Links
        Scott Gruber edited this page Nov 28, 2019 
        ·
        5 revisions
      
    Links are very important — they are what makes the web a web!
To add a link, we need to use a simple element — <a> — "a" being the short form for "anchor". To make text within your paragraph into a link, follow these steps:
- Choose some text. We chose the text "Mozilla Manifesto".
 - Wrap the text in an 
<a>element, like this:<a>Mozilla Manifesto</a> - Give the  element an href attribute, like this: 
<a href="">Mozilla Manifesto</a> - Fill in the value of this attribute with the web address that you want the link to link to:
<a href="https://www.mozilla.org/en-US/about/manifesto/">Mozilla Manifesto</a> - After making a link, click it to make sure it is working.
 
You might get unexpected results if you omit the https:// or http:// part, called the protocol, at the beginning of the web address.
Source: HTML Basics on Mozilla Developer Network
- Right-click the link.
 - Click Copy link.
 - Right-click the desired location.
 - Click Paste.
 
If you want to share or save a website you're visiting, you can copy the address from the address bar of your browser:
- Click the address in your browser.
 - Select the entire address if it isn't already. Usually the address will automatically be selected when you click it. If it isn't, press Ctrl/⌘ Cmd+A to select the entire thing.
 - Copy the selected address by right-clicking the selection and clicking "Copy," or by pressing Ctrl/⌘ Cmd+C.
 - Place your cursor where you want to paste the link and press Ctrl/⌘ Cmd+V.
 
Source: Wiki How to Copy and Paste a Link includes screenshots for each step.