Posts

Showing posts with the label search box source code

Source code for search box in html

Source code for search box in html // HTML code for search box  <html>   <head>     <title></title>   </head>   <body>            <link rel="stylesheet" href="https://use.fontawesome.com/releases /v5.8.0/css/all.css">      <form action="https://google.com/search"  target="_blank" type="GET">   <input type="search" placeholder="Search.." name="q" required><button><i class="fa fa-search"></i>   </button></form>   </body> </html> // css code for search box  body{   margin-top: 3%;   background-color:  #F8F9F9; } input[type=search]{ width: 91%; height: 35px; margin-top: 0.6%; margin-left: 2.50%; font-size: 20px; border: 0px solid #bebebe; color: black;  border-radius: 8px 0 0 8px; font-weight: bold;  border: 1.50px solid rgba(0,0,0,0.1);  border-right: 0px solid g...