Google search bar
















Code for Google search bar:-

<!DOCTYPE html>
<html>
<HEAD>
    <style>
        body {
            height: 100vh;
            background: white;
            border: 0px;
        }
       
        input {
            border-radius: 4px;
            background: rgb(19, 2, 255);
        }
       
        input:hover {
            border-radius: 9px;
            background: rgb(4, 240, 220);
        }
    </style>
</HEAD>
<body>
    <form method="get" action="http://www.google.com/search">
        <br><br><br><br><br><br><br><br><br><br><br><br><br><br>
        <center>
            <h1></h1>
            <input type="text" name="q" size="25" maxlength="255" value="" /><br>
            <input type="submit" value="Search" /></center>




    </form>
</body>
</html>




Post a Comment

0 Comments