Popular Posts

Designing a Simple Google Image Search Box using HTML only

This article takes us through how we can add Google search bar to our website using HTML only. To implement this we will create a text box and assign "name" attribute as "q". Then we have created a GET request to "https://www.google.com/search" .

<form action="https://www.google.com/search">
  <input type="text" name="q">
  <input type="submit" value="search">
</form>