codewithsadee / eduweb

EduWeb is a fully responsive education website, Responsive for all devices, build using HTML, CSS, and JavaScript.
https://codewithsadee.github.io/eduweb/
167 stars 78 forks source link

search bar and buttons not opening links #3

Open satwikbhat1 opened 2 months ago

patrikaeberli commented 2 months ago

Do you mean buttons like the "Try for free" at the top right? In that case you have to replace the href which is currently set to # which usually redirects to the top of the webpage.

Original:

<a href="#" class="btn has-before">
          <span class="span">Try for free</span>

          <ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
        </a>

With changes:

<a href="https://patrikaeberli.ch" class="btn has-before">
          <span class="span">Try for free</span>

          <ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
        </a>