TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <body> <h2>Nested Description List</h2> <dl> <dt>Fruits</dt> <dd> <dl> <dt>Apple</dt> <dd>A sweet fruit.</dd> <dt>Banana</dt> <dd>A tropical fruit.</dd> </dl> </dd> <dt>Vegetables</dt> <dd> <dl> <dt>Carrot</dt> <dd>A root vegetable.</dd> <dt>Broccoli</dt> <dd>A green vegetable.</dd> </dl> </dd> </dl> </body> </html>