HTML <summary> Tag
The <summary> tag defines a visible heading for the <details> element. The heading can be clicked to view/hide the details.
Example
<!DOCTYPE html> <html> <body> <details> <summary>Copyright 2017-2018.</summary> <p>javameant all right reserved</p> </body> </html>