TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <style> dl { border: 1px solid #ccc; padding: 10px; margin: 20px 0; } dt { font-weight: bold; color: #333; } dd { margin-left: 20px; color: #666; } </style> </head> <body> <h2>Styled Description List</h2> <dl> <dt>Earth</dt> <dd>The third planet from the Sun in the Solar System.</dd> <dt>Sun</dt> <dd>The star at the center of the Solar System.</dd> <dt>Moon</dt> <dd>The natural satellite of Earth.</dd> </dl> </body> </html>