I'm new to web development and have a question. It'd like to add multiple links to the same website on my page. Rather than to add the href="www.mywebsite.com" multiple times to the code, is there anyway to add it to one location and reference it?
For example, this is what I have. The button and the text both take to the same website.
<div class="col-md-3 head-main ">
<a href="www.mywebsite.com"><i class="fa color-blue "></i><a>
<h3> <a href="www.mywebsite.com" target="_blank">MY WEBSITE</a></h3>
</div>