PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; text-align: center; margin: 50px; } details { display: inline-block; text-align: left; } summary { background-color: #4CAF50; color: #fff; padding: 10px; cursor: pointer; border-radius: 5px; user-select: none; } details[open] summary { background-color: #45a049; } div { background-color: #f1f1f1; padding: 10px; border: 1px solid #ddd; border-radius: 5px; } </style> </head> <body> <h1>A Example <summary></h1> <details> <summary>Show details</summary> <div> <p>This is a sample text enclosed within a <details> and <summary> tag. و </p> <p>You can view these details by clicking on "View Details".</p> </div> </details> </body> </html>