Is it appropriate to use link texts instead of full URLs on a resume?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;







up vote
3
down vote

favorite












A HTML link with link text (anchor) would be useless if the resume is printed out.



Like this: Google instead of just the URL http://google.com.



In this era, can we safely assume that our links will be accessible and won't it cost me if I use link text?







share|improve this question


















  • 2




    This is usually called "anchor text" and is standard for electronic documents (link "masking" is usually refering to something more nefarious). In HTML you can also arrange that print versions include the URL text when printed out, e.g. see here for a CSS code to do that css-tricks.com/snippets/css/print-url-after-links
    – Brandin
    Aug 12 '15 at 6:08







  • 2




    The bigger question is why do you want to include a link?
    – mhoran_psprep
    Aug 12 '15 at 10:55






  • 1




    @mhoran_psprep I would like to include links to relevant work and a personal website.
    – Steve
    Aug 12 '15 at 18:42
















up vote
3
down vote

favorite












A HTML link with link text (anchor) would be useless if the resume is printed out.



Like this: Google instead of just the URL http://google.com.



In this era, can we safely assume that our links will be accessible and won't it cost me if I use link text?







share|improve this question


















  • 2




    This is usually called "anchor text" and is standard for electronic documents (link "masking" is usually refering to something more nefarious). In HTML you can also arrange that print versions include the URL text when printed out, e.g. see here for a CSS code to do that css-tricks.com/snippets/css/print-url-after-links
    – Brandin
    Aug 12 '15 at 6:08







  • 2




    The bigger question is why do you want to include a link?
    – mhoran_psprep
    Aug 12 '15 at 10:55






  • 1




    @mhoran_psprep I would like to include links to relevant work and a personal website.
    – Steve
    Aug 12 '15 at 18:42












up vote
3
down vote

favorite









up vote
3
down vote

favorite











A HTML link with link text (anchor) would be useless if the resume is printed out.



Like this: Google instead of just the URL http://google.com.



In this era, can we safely assume that our links will be accessible and won't it cost me if I use link text?







share|improve this question














A HTML link with link text (anchor) would be useless if the resume is printed out.



Like this: Google instead of just the URL http://google.com.



In this era, can we safely assume that our links will be accessible and won't it cost me if I use link text?









share|improve this question













share|improve this question




share|improve this question








edited Aug 12 '15 at 7:59









Jan Doggen

11.5k145066




11.5k145066










asked Aug 12 '15 at 3:27









Steve

1184




1184







  • 2




    This is usually called "anchor text" and is standard for electronic documents (link "masking" is usually refering to something more nefarious). In HTML you can also arrange that print versions include the URL text when printed out, e.g. see here for a CSS code to do that css-tricks.com/snippets/css/print-url-after-links
    – Brandin
    Aug 12 '15 at 6:08







  • 2




    The bigger question is why do you want to include a link?
    – mhoran_psprep
    Aug 12 '15 at 10:55






  • 1




    @mhoran_psprep I would like to include links to relevant work and a personal website.
    – Steve
    Aug 12 '15 at 18:42












  • 2




    This is usually called "anchor text" and is standard for electronic documents (link "masking" is usually refering to something more nefarious). In HTML you can also arrange that print versions include the URL text when printed out, e.g. see here for a CSS code to do that css-tricks.com/snippets/css/print-url-after-links
    – Brandin
    Aug 12 '15 at 6:08







  • 2




    The bigger question is why do you want to include a link?
    – mhoran_psprep
    Aug 12 '15 at 10:55






  • 1




    @mhoran_psprep I would like to include links to relevant work and a personal website.
    – Steve
    Aug 12 '15 at 18:42







2




2




This is usually called "anchor text" and is standard for electronic documents (link "masking" is usually refering to something more nefarious). In HTML you can also arrange that print versions include the URL text when printed out, e.g. see here for a CSS code to do that css-tricks.com/snippets/css/print-url-after-links
– Brandin
Aug 12 '15 at 6:08





This is usually called "anchor text" and is standard for electronic documents (link "masking" is usually refering to something more nefarious). In HTML you can also arrange that print versions include the URL text when printed out, e.g. see here for a CSS code to do that css-tricks.com/snippets/css/print-url-after-links
– Brandin
Aug 12 '15 at 6:08





2




2




The bigger question is why do you want to include a link?
– mhoran_psprep
Aug 12 '15 at 10:55




The bigger question is why do you want to include a link?
– mhoran_psprep
Aug 12 '15 at 10:55




1




1




@mhoran_psprep I would like to include links to relevant work and a personal website.
– Steve
Aug 12 '15 at 18:42




@mhoran_psprep I would like to include links to relevant work and a personal website.
– Steve
Aug 12 '15 at 18:42










4 Answers
4






active

oldest

votes

















up vote
6
down vote



accepted










Assume your resume will be printed out and read (and sorted for interest) in printed form. Offering URIs may be useful if someone wants to follow up on something after you've gotten past the first few layers of screening, but if they aren't visible in plaintext they may get lost before reaching the person who would be interested.



Also remember that some folks may be reading this with assistive technology. I don't know how sophisticated tools for blind users are these days; I would hope they'd be able to handle hypertext by now but I'm not sure I'd want to count on that.



Or offer both a "live" version and a plaintext-friendly version?






share|improve this answer






















  • Understood. I'm in the software industry so I thought it might be savvy to mask the URIs. I shall follow your advice nonetheless; it seems the safest path.
    – Steve
    Aug 12 '15 at 3:53






  • 3




    So am I... but don't count on the interview process using current technology. The old line about the cobbler's kids going barefoot still carries entirely too much truth -- and paper is still easier to work with when trying to compare and contrast fifteen documents which may have little in common with each other.
    – keshlam
    Aug 12 '15 at 3:56






  • 2




    As regards those viewing electronic versions using assistive technology, it's generally best to go with anchor text as a, for example, screen reader, will announce that is a link and can then just say "Google" or otherwise will have to announce a link and then read out "http-colon-forwardslash-forwardslash-google-dot-com"
    – Toby
    Aug 12 '15 at 9:12






  • 2




    @Steve I'm in the software industry as well. The last time I looked for a job, every interview I got came from handing recruiters paper resumes, and even after emailing a PDF on request, whoever interviewed me always had a paper copy in hand. My best advice is to display the URLs on your resume, and make them links.
    – Not My Real Profile
    Aug 13 '15 at 16:33

















up vote
4
down vote













As an alternative to the other great answers here, you could always link the text in your resume, but also place a footnote label next to it, like this:
Google[1]



Then in a footnote area, either in the page footer or at the end of the document, include a line like:
[1] http://www.google.com



Not only does this provide accessibility ifwhen the resume is printed out, but it also provides extra transparency when it is being viewed electronically (for those that aren't already savvy enough to know how to reveal link targets themselves).






share|improve this answer



























    up vote
    3
    down vote













    When generating a CV/Resume assume it is never in the format you want.



    Some companies will convert to the file format they want. Others will automatically pull the info they find into a database. Many will ask you to cut and paste the paragraphs into their web form, one text box at a time.



    Make sure that the required info makes it through these processes. A URL that is so ugly and long that you want to hide behind anchor text, may limit the number of people who will be willing to type it out when they are only given an image of the resume.



    There is no need to make links to the companies you have worked for. Also few will click on github or other sites that will store your portfolio, unles they have specifically asked for those links.



    A new problem I have run into is that my corporate email is now configured to mangle all external URLs so that they can't be clicked, and that you have to carefully cut the good part so that you can paste it into the browser.






    share|improve this answer



























      up vote
      2
      down vote














      In this era, can we safely assume that our links will be accessible
      and won't it cost me if I use link text?




      No. You cannot assume that.



      Even in this era, resumes are very often converted to PDFs and/or printed or go through other steps that could remove a hyperlink. In my experience many recruiters and HR groups don't take the steps necessary to preserve all formatting aspects of submitted documents.



      Why assume anything and take that chance? Far better to use the full URL http://google.com to ensure that your links are readable in all cases.






      share|improve this answer






















        Your Answer







        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "423"
        ;
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function()
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled)
        StackExchange.using("snippets", function()
        createEditor();
        );

        else
        createEditor();

        );

        function createEditor()
        StackExchange.prepareEditor(
        heartbeatType: 'answer',
        convertImagesToLinks: false,
        noModals: false,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: null,
        bindNavPrevention: true,
        postfix: "",
        noCode: true, onDemand: false,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );








         

        draft saved


        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fworkplace.stackexchange.com%2fquestions%2f52009%2fis-it-appropriate-to-use-link-texts-instead-of-full-urls-on-a-resume%23new-answer', 'question_page');

        );

        Post as a guest

























        StackExchange.ready(function ()
        $("#show-editor-button input, #show-editor-button button").click(function ()
        var showEditor = function()
        $("#show-editor-button").hide();
        $("#post-form").removeClass("dno");
        StackExchange.editor.finallyInit();
        ;

        var useFancy = $(this).data('confirm-use-fancy');
        if(useFancy == 'True')
        var popupTitle = $(this).data('confirm-fancy-title');
        var popupBody = $(this).data('confirm-fancy-body');
        var popupAccept = $(this).data('confirm-fancy-accept-button');

        $(this).loadPopup(
        url: '/post/self-answer-popup',
        loaded: function(popup)
        var pTitle = $(popup).find('h2');
        var pBody = $(popup).find('.popup-body');
        var pSubmit = $(popup).find('.popup-submit');

        pTitle.text(popupTitle);
        pBody.html(popupBody);
        pSubmit.val(popupAccept).click(showEditor);

        )
        else
        var confirmText = $(this).data('confirm-text');
        if (confirmText ? confirm(confirmText) : true)
        showEditor();


        );
        );






        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes








        up vote
        6
        down vote



        accepted










        Assume your resume will be printed out and read (and sorted for interest) in printed form. Offering URIs may be useful if someone wants to follow up on something after you've gotten past the first few layers of screening, but if they aren't visible in plaintext they may get lost before reaching the person who would be interested.



        Also remember that some folks may be reading this with assistive technology. I don't know how sophisticated tools for blind users are these days; I would hope they'd be able to handle hypertext by now but I'm not sure I'd want to count on that.



        Or offer both a "live" version and a plaintext-friendly version?






        share|improve this answer






















        • Understood. I'm in the software industry so I thought it might be savvy to mask the URIs. I shall follow your advice nonetheless; it seems the safest path.
          – Steve
          Aug 12 '15 at 3:53






        • 3




          So am I... but don't count on the interview process using current technology. The old line about the cobbler's kids going barefoot still carries entirely too much truth -- and paper is still easier to work with when trying to compare and contrast fifteen documents which may have little in common with each other.
          – keshlam
          Aug 12 '15 at 3:56






        • 2




          As regards those viewing electronic versions using assistive technology, it's generally best to go with anchor text as a, for example, screen reader, will announce that is a link and can then just say "Google" or otherwise will have to announce a link and then read out "http-colon-forwardslash-forwardslash-google-dot-com"
          – Toby
          Aug 12 '15 at 9:12






        • 2




          @Steve I'm in the software industry as well. The last time I looked for a job, every interview I got came from handing recruiters paper resumes, and even after emailing a PDF on request, whoever interviewed me always had a paper copy in hand. My best advice is to display the URLs on your resume, and make them links.
          – Not My Real Profile
          Aug 13 '15 at 16:33














        up vote
        6
        down vote



        accepted










        Assume your resume will be printed out and read (and sorted for interest) in printed form. Offering URIs may be useful if someone wants to follow up on something after you've gotten past the first few layers of screening, but if they aren't visible in plaintext they may get lost before reaching the person who would be interested.



        Also remember that some folks may be reading this with assistive technology. I don't know how sophisticated tools for blind users are these days; I would hope they'd be able to handle hypertext by now but I'm not sure I'd want to count on that.



        Or offer both a "live" version and a plaintext-friendly version?






        share|improve this answer






















        • Understood. I'm in the software industry so I thought it might be savvy to mask the URIs. I shall follow your advice nonetheless; it seems the safest path.
          – Steve
          Aug 12 '15 at 3:53






        • 3




          So am I... but don't count on the interview process using current technology. The old line about the cobbler's kids going barefoot still carries entirely too much truth -- and paper is still easier to work with when trying to compare and contrast fifteen documents which may have little in common with each other.
          – keshlam
          Aug 12 '15 at 3:56






        • 2




          As regards those viewing electronic versions using assistive technology, it's generally best to go with anchor text as a, for example, screen reader, will announce that is a link and can then just say "Google" or otherwise will have to announce a link and then read out "http-colon-forwardslash-forwardslash-google-dot-com"
          – Toby
          Aug 12 '15 at 9:12






        • 2




          @Steve I'm in the software industry as well. The last time I looked for a job, every interview I got came from handing recruiters paper resumes, and even after emailing a PDF on request, whoever interviewed me always had a paper copy in hand. My best advice is to display the URLs on your resume, and make them links.
          – Not My Real Profile
          Aug 13 '15 at 16:33












        up vote
        6
        down vote



        accepted







        up vote
        6
        down vote



        accepted






        Assume your resume will be printed out and read (and sorted for interest) in printed form. Offering URIs may be useful if someone wants to follow up on something after you've gotten past the first few layers of screening, but if they aren't visible in plaintext they may get lost before reaching the person who would be interested.



        Also remember that some folks may be reading this with assistive technology. I don't know how sophisticated tools for blind users are these days; I would hope they'd be able to handle hypertext by now but I'm not sure I'd want to count on that.



        Or offer both a "live" version and a plaintext-friendly version?






        share|improve this answer














        Assume your resume will be printed out and read (and sorted for interest) in printed form. Offering URIs may be useful if someone wants to follow up on something after you've gotten past the first few layers of screening, but if they aren't visible in plaintext they may get lost before reaching the person who would be interested.



        Also remember that some folks may be reading this with assistive technology. I don't know how sophisticated tools for blind users are these days; I would hope they'd be able to handle hypertext by now but I'm not sure I'd want to count on that.



        Or offer both a "live" version and a plaintext-friendly version?







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Aug 12 '15 at 4:02

























        answered Aug 12 '15 at 3:50









        keshlam

        41.5k1267144




        41.5k1267144











        • Understood. I'm in the software industry so I thought it might be savvy to mask the URIs. I shall follow your advice nonetheless; it seems the safest path.
          – Steve
          Aug 12 '15 at 3:53






        • 3




          So am I... but don't count on the interview process using current technology. The old line about the cobbler's kids going barefoot still carries entirely too much truth -- and paper is still easier to work with when trying to compare and contrast fifteen documents which may have little in common with each other.
          – keshlam
          Aug 12 '15 at 3:56






        • 2




          As regards those viewing electronic versions using assistive technology, it's generally best to go with anchor text as a, for example, screen reader, will announce that is a link and can then just say "Google" or otherwise will have to announce a link and then read out "http-colon-forwardslash-forwardslash-google-dot-com"
          – Toby
          Aug 12 '15 at 9:12






        • 2




          @Steve I'm in the software industry as well. The last time I looked for a job, every interview I got came from handing recruiters paper resumes, and even after emailing a PDF on request, whoever interviewed me always had a paper copy in hand. My best advice is to display the URLs on your resume, and make them links.
          – Not My Real Profile
          Aug 13 '15 at 16:33
















        • Understood. I'm in the software industry so I thought it might be savvy to mask the URIs. I shall follow your advice nonetheless; it seems the safest path.
          – Steve
          Aug 12 '15 at 3:53






        • 3




          So am I... but don't count on the interview process using current technology. The old line about the cobbler's kids going barefoot still carries entirely too much truth -- and paper is still easier to work with when trying to compare and contrast fifteen documents which may have little in common with each other.
          – keshlam
          Aug 12 '15 at 3:56






        • 2




          As regards those viewing electronic versions using assistive technology, it's generally best to go with anchor text as a, for example, screen reader, will announce that is a link and can then just say "Google" or otherwise will have to announce a link and then read out "http-colon-forwardslash-forwardslash-google-dot-com"
          – Toby
          Aug 12 '15 at 9:12






        • 2




          @Steve I'm in the software industry as well. The last time I looked for a job, every interview I got came from handing recruiters paper resumes, and even after emailing a PDF on request, whoever interviewed me always had a paper copy in hand. My best advice is to display the URLs on your resume, and make them links.
          – Not My Real Profile
          Aug 13 '15 at 16:33















        Understood. I'm in the software industry so I thought it might be savvy to mask the URIs. I shall follow your advice nonetheless; it seems the safest path.
        – Steve
        Aug 12 '15 at 3:53




        Understood. I'm in the software industry so I thought it might be savvy to mask the URIs. I shall follow your advice nonetheless; it seems the safest path.
        – Steve
        Aug 12 '15 at 3:53




        3




        3




        So am I... but don't count on the interview process using current technology. The old line about the cobbler's kids going barefoot still carries entirely too much truth -- and paper is still easier to work with when trying to compare and contrast fifteen documents which may have little in common with each other.
        – keshlam
        Aug 12 '15 at 3:56




        So am I... but don't count on the interview process using current technology. The old line about the cobbler's kids going barefoot still carries entirely too much truth -- and paper is still easier to work with when trying to compare and contrast fifteen documents which may have little in common with each other.
        – keshlam
        Aug 12 '15 at 3:56




        2




        2




        As regards those viewing electronic versions using assistive technology, it's generally best to go with anchor text as a, for example, screen reader, will announce that is a link and can then just say "Google" or otherwise will have to announce a link and then read out "http-colon-forwardslash-forwardslash-google-dot-com"
        – Toby
        Aug 12 '15 at 9:12




        As regards those viewing electronic versions using assistive technology, it's generally best to go with anchor text as a, for example, screen reader, will announce that is a link and can then just say "Google" or otherwise will have to announce a link and then read out "http-colon-forwardslash-forwardslash-google-dot-com"
        – Toby
        Aug 12 '15 at 9:12




        2




        2




        @Steve I'm in the software industry as well. The last time I looked for a job, every interview I got came from handing recruiters paper resumes, and even after emailing a PDF on request, whoever interviewed me always had a paper copy in hand. My best advice is to display the URLs on your resume, and make them links.
        – Not My Real Profile
        Aug 13 '15 at 16:33




        @Steve I'm in the software industry as well. The last time I looked for a job, every interview I got came from handing recruiters paper resumes, and even after emailing a PDF on request, whoever interviewed me always had a paper copy in hand. My best advice is to display the URLs on your resume, and make them links.
        – Not My Real Profile
        Aug 13 '15 at 16:33












        up vote
        4
        down vote













        As an alternative to the other great answers here, you could always link the text in your resume, but also place a footnote label next to it, like this:
        Google[1]



        Then in a footnote area, either in the page footer or at the end of the document, include a line like:
        [1] http://www.google.com



        Not only does this provide accessibility ifwhen the resume is printed out, but it also provides extra transparency when it is being viewed electronically (for those that aren't already savvy enough to know how to reveal link targets themselves).






        share|improve this answer
























          up vote
          4
          down vote













          As an alternative to the other great answers here, you could always link the text in your resume, but also place a footnote label next to it, like this:
          Google[1]



          Then in a footnote area, either in the page footer or at the end of the document, include a line like:
          [1] http://www.google.com



          Not only does this provide accessibility ifwhen the resume is printed out, but it also provides extra transparency when it is being viewed electronically (for those that aren't already savvy enough to know how to reveal link targets themselves).






          share|improve this answer






















            up vote
            4
            down vote










            up vote
            4
            down vote









            As an alternative to the other great answers here, you could always link the text in your resume, but also place a footnote label next to it, like this:
            Google[1]



            Then in a footnote area, either in the page footer or at the end of the document, include a line like:
            [1] http://www.google.com



            Not only does this provide accessibility ifwhen the resume is printed out, but it also provides extra transparency when it is being viewed electronically (for those that aren't already savvy enough to know how to reveal link targets themselves).






            share|improve this answer












            As an alternative to the other great answers here, you could always link the text in your resume, but also place a footnote label next to it, like this:
            Google[1]



            Then in a footnote area, either in the page footer or at the end of the document, include a line like:
            [1] http://www.google.com



            Not only does this provide accessibility ifwhen the resume is printed out, but it also provides extra transparency when it is being viewed electronically (for those that aren't already savvy enough to know how to reveal link targets themselves).







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Aug 13 '15 at 13:01









            Dan Henderson

            45738




            45738




















                up vote
                3
                down vote













                When generating a CV/Resume assume it is never in the format you want.



                Some companies will convert to the file format they want. Others will automatically pull the info they find into a database. Many will ask you to cut and paste the paragraphs into their web form, one text box at a time.



                Make sure that the required info makes it through these processes. A URL that is so ugly and long that you want to hide behind anchor text, may limit the number of people who will be willing to type it out when they are only given an image of the resume.



                There is no need to make links to the companies you have worked for. Also few will click on github or other sites that will store your portfolio, unles they have specifically asked for those links.



                A new problem I have run into is that my corporate email is now configured to mangle all external URLs so that they can't be clicked, and that you have to carefully cut the good part so that you can paste it into the browser.






                share|improve this answer
























                  up vote
                  3
                  down vote













                  When generating a CV/Resume assume it is never in the format you want.



                  Some companies will convert to the file format they want. Others will automatically pull the info they find into a database. Many will ask you to cut and paste the paragraphs into their web form, one text box at a time.



                  Make sure that the required info makes it through these processes. A URL that is so ugly and long that you want to hide behind anchor text, may limit the number of people who will be willing to type it out when they are only given an image of the resume.



                  There is no need to make links to the companies you have worked for. Also few will click on github or other sites that will store your portfolio, unles they have specifically asked for those links.



                  A new problem I have run into is that my corporate email is now configured to mangle all external URLs so that they can't be clicked, and that you have to carefully cut the good part so that you can paste it into the browser.






                  share|improve this answer






















                    up vote
                    3
                    down vote










                    up vote
                    3
                    down vote









                    When generating a CV/Resume assume it is never in the format you want.



                    Some companies will convert to the file format they want. Others will automatically pull the info they find into a database. Many will ask you to cut and paste the paragraphs into their web form, one text box at a time.



                    Make sure that the required info makes it through these processes. A URL that is so ugly and long that you want to hide behind anchor text, may limit the number of people who will be willing to type it out when they are only given an image of the resume.



                    There is no need to make links to the companies you have worked for. Also few will click on github or other sites that will store your portfolio, unles they have specifically asked for those links.



                    A new problem I have run into is that my corporate email is now configured to mangle all external URLs so that they can't be clicked, and that you have to carefully cut the good part so that you can paste it into the browser.






                    share|improve this answer












                    When generating a CV/Resume assume it is never in the format you want.



                    Some companies will convert to the file format they want. Others will automatically pull the info they find into a database. Many will ask you to cut and paste the paragraphs into their web form, one text box at a time.



                    Make sure that the required info makes it through these processes. A URL that is so ugly and long that you want to hide behind anchor text, may limit the number of people who will be willing to type it out when they are only given an image of the resume.



                    There is no need to make links to the companies you have worked for. Also few will click on github or other sites that will store your portfolio, unles they have specifically asked for those links.



                    A new problem I have run into is that my corporate email is now configured to mangle all external URLs so that they can't be clicked, and that you have to carefully cut the good part so that you can paste it into the browser.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Aug 12 '15 at 11:04









                    mhoran_psprep

                    40.3k462144




                    40.3k462144




















                        up vote
                        2
                        down vote














                        In this era, can we safely assume that our links will be accessible
                        and won't it cost me if I use link text?




                        No. You cannot assume that.



                        Even in this era, resumes are very often converted to PDFs and/or printed or go through other steps that could remove a hyperlink. In my experience many recruiters and HR groups don't take the steps necessary to preserve all formatting aspects of submitted documents.



                        Why assume anything and take that chance? Far better to use the full URL http://google.com to ensure that your links are readable in all cases.






                        share|improve this answer


























                          up vote
                          2
                          down vote














                          In this era, can we safely assume that our links will be accessible
                          and won't it cost me if I use link text?




                          No. You cannot assume that.



                          Even in this era, resumes are very often converted to PDFs and/or printed or go through other steps that could remove a hyperlink. In my experience many recruiters and HR groups don't take the steps necessary to preserve all formatting aspects of submitted documents.



                          Why assume anything and take that chance? Far better to use the full URL http://google.com to ensure that your links are readable in all cases.






                          share|improve this answer
























                            up vote
                            2
                            down vote










                            up vote
                            2
                            down vote










                            In this era, can we safely assume that our links will be accessible
                            and won't it cost me if I use link text?




                            No. You cannot assume that.



                            Even in this era, resumes are very often converted to PDFs and/or printed or go through other steps that could remove a hyperlink. In my experience many recruiters and HR groups don't take the steps necessary to preserve all formatting aspects of submitted documents.



                            Why assume anything and take that chance? Far better to use the full URL http://google.com to ensure that your links are readable in all cases.






                            share|improve this answer















                            In this era, can we safely assume that our links will be accessible
                            and won't it cost me if I use link text?




                            No. You cannot assume that.



                            Even in this era, resumes are very often converted to PDFs and/or printed or go through other steps that could remove a hyperlink. In my experience many recruiters and HR groups don't take the steps necessary to preserve all formatting aspects of submitted documents.



                            Why assume anything and take that chance? Far better to use the full URL http://google.com to ensure that your links are readable in all cases.







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Aug 13 '15 at 13:04

























                            answered Aug 12 '15 at 11:34









                            Joe Strazzere

                            223k106654921




                            223k106654921






















                                 

                                draft saved


                                draft discarded


























                                 


                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fworkplace.stackexchange.com%2fquestions%2f52009%2fis-it-appropriate-to-use-link-texts-instead-of-full-urls-on-a-resume%23new-answer', 'question_page');

                                );

                                Post as a guest

















































































                                Comments

                                Popular posts from this blog

                                What does second last employer means? [closed]

                                List of Gilmore Girls characters

                                Confectionery