Pages - Menu

Monday, July 23, 2012

Search Box

Here is a simple 'search box' code:





<form action="/search">
    <label for="q">Search:</label>
    <input type="text" name="q" id="q">

 </form>






It will look like this, without button, just type and enter. It will search into your website.






If you want it search on google or any other site you have to write google url or website url before search. Like "https://www.google.com/search" instead of "/search" .


<form action="https://www.google.com/search">
    <label for="q">Search:</label>
    <input type="text" name="q" id="q">

 </form>



   
   





Later on i will show more complicated search boxes here.

No comments:

Post a Comment