How to add URL Link to this <a class=>

Creating a wordpress site, and got this within the widget section…can’t seem to get any url code to work!

This is the code at the moment;

Read More
[one_third]
<a class="home-buttons"><i class="icon mortgage-calculator-icon"></i>Mortgage Calculator</a>
<a class="home-buttons"><i class="icon newsletter-icon"></i>Help to Buy</a>
<a class="home-buttons"><i class="icon newsletter-icon"></i>Meet the Team</a>
<a class="home-buttons"><i class="icon newsletter-icon"></i>Contractor Mortgages</a>
<a class="home-buttons"><i class="icon newsletter-icon"></i>FactSheets</a>
[/one_third]

How do I add URL functionality, so that each button links to a URL

Thanks in advance everyone.

Related posts

Leave a Reply

2 comments

  1. This will do the trick, add the href element. Change home.html by any url that you wish.

    [one_third]
        <a class="home-buttons" href="home.html"><i class="icon mortgage-calculator-icon"></i>Mortgage Calculator</a>
        <a class="home-buttons" href="home.html"><i class="icon newsletter-icon"></i>Help to Buy</a>
        <a class="home-buttons" href="home.html"><i class="icon newsletter-icon"></i>Meet the Team</a>
        <a class="home-buttons" href="home.html"><i class="icon newsletter-icon"></i>Contractor Mortgages</a>
        <a class="home-buttons" href="home.html"><i class="icon newsletter-icon"></i>FactSheets</a>
    [/one_third]