Open In App

HTML <keygen> form Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <keygen> form attribute is used to specify one or more forms that the <keygen> element belongs to.

Syntax:

<keygen form="form_id">

Attribute Values:  It contains single value form_id which specifies the one or more than one form that Keygen elements belong to. The value of this attribute should be id of the <form> element. Example Code: Below code illustrates the HTML <keygen>form attribute. 

HTML




<!DOCTYPE html>
<html>
 
<body>
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
 
    <h2>HTML Keygen form attribute</h2>
 
    <form id = "myGeeks">
        Username: <input type="text" name="uname">
        <br><br> Encryption:
        <keygen form="myGeeks" name="secure">
        <input type="submit">
    </form>
</body>
 
</html>


  
 

Output:

 

 

Supported Browsers:

  • Apple Safari 1.0
  • Google Chrome 1.0
  • Firefox 1.0
  • Opera 1.0

 


Last Updated : 08 Sep, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads