How can I make the search form in my navigation Bar work? Using Bootstrap 4
Hello all,
I've made a website in Dreamweaver using Bootstrap 4 and it includes a navigation bar with a search button.
This is the code of the search button:
<form class="d-flex"> <input class="form-control me-2" type="text" placeholder="Search site"> <button class="btn btn-searcher" type="button">🔍</button> </form> </div></nav> <form class="form-inline my-2 my-xs-0 small-screen"></form>
I've tried to search internet on how to add data to my website for the search form, but I did not find a clear anwer.
I know how to add meta-tags to a page, but I don't think that's enough.
Can someone explain to me step-by-step how I should proceed?
Thank you!
