Open In App

HTML | <isindex> tag

Last Updated : 15 Sep, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The <isindex> tag is used to querying any document through a text field. Means this tag inform the browser that the user wants to provide the search function through the document. If you want to search any specific word in a long article this tag is helpful then. But during these days all the browsers contain that feature by pressing CTRL + F will let you search the word, so this tag is no more useful these days.

Syntax: 

<isindex prompt="search">

Attribute:  

  • prompt: This attribute contains a string which is label for the text field.
  • action: This attribute holds the URL when you need to send the query to a different URL.

Note: HTML5 does not support <isindex> tag. 

Example:  

HTML




<!Doctype html>
<html>
 
<head>
    <title>HTML isindex Tag</title>
    <isindex prompt="Search" />
    <style>
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>HTML <isindex> tag</h2>
         
<p>
            Articles that need little modification/improvement
        from reviewers are published first. To quickly get your
        articles reviewed, please refer existing articles,
        their formating style, coding style, and try to make
        your close to them.
        </p>
 
    </center>
</body>
 
</html>                   


Output: get word was searched, 

Supported Browsers: The browsers supported by HTML | <isindex> tag are listed below:  

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads