-->
Showing posts with label input type search box. Show all posts
Showing posts with label input type search box. Show all posts

HTML page with input type search.

On our website we put search box to search content. We can insert search box using input type search.
-----------------------------------------------------------------------------------------
<html><!--root tag-->

<head><!--used for meta tag-->
    <title><!--title tag-->
        form with type search
    </title>
</head>

<body><!--is a container-->
    form <br>
    <form><!--opening of form tag-->
        enter data to be searched
        <input type="search">
        <!--accepts number. we can put max or min attribute-->
    </form>
</body>

</html>