Magento 2 add link and icon in header

So I wanna add a Link with Icon and the text that says “Contact Us” beside “Mina sidor” in the header. So when u click on Contact Us u are directed to a different page with all contact information.

enter image description here

I have been adding this line of code to my Magento_Theme/layout/default.xml file and after that clearing the cache but nothing happens. I’ve been looking around but I doesn’t seem to find where “Mina sidor” and “Varukorg” are made.

Am I looking in the wrong place?

<referenceBlock name="header.links">
    <block class="MagentoFrameworkViewElementHtmlLink" name="new.link" after="register-link">
        <arguments>
            <argument name="label" xsi:type="string" translate="false">New Link</argument>
            <argument name="path" xsi:type="string" translate="false">newlink</argument>
        </arguments>
    </block>
</referenceBlock>