Home > Article > Web Front-end > How to use html keygen tag
html5 New attribute
autofocus: Make the<keygen name="名称" />或<keygen name="名称" >Example
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>html< keygen> 标签笔记_PHP笔记</title> </head> <body> <form action="#" method="get" /> 用户名: <input type="text" name="user" /><br /><br /> 加密: <keygen name="myKeygen" /><br /><br /> <input type="submit"> </form> </body> </html>Running result
The above is the detailed content of How to use html keygen tag. For more information, please follow other related articles on the PHP Chinese website!