Can there be http links implemented on gif files, so when pressed it would direct the user to some web address? I think those gif files they are called "call to action" or somethin... does that ring a bell?
If you're talking about making it in HTML, then yes, you can do this. Basically, animated gifs are the same images just like any other ones. Here's an example code:
HTML:
<a href="https://www.macrumors.com/">
<img src="some.gif" alt="Link to MacRumors">
</a>
I attached a page with the code so you can take a look at it your browser.