Home >>HTML5 Tutorial >HTML5 <summary> Tag
The <summary> tag is used in HTML to define a summary for the <details> element.
Syntax: <summary> put Content which summary is required <summary>
Let's take an Example of HTML 5 <summary> Tag:
<!DOCTYPE html> <html> <body> <details> <summary>Phptpoint</summary> <p>Welcome to Phptpoint tutorial</p> </details> </body> </html>
Welcome to Phptpoint tutorial