Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Description Lists</title> <style> dt { font-weight: bold; margin-top: 12px; } dd { margin-left: 24px; color: #444; } </style> </head> <body> <h1>Web Glossary</h1> <dl> <dt>HTML</dt> <dd>HyperText Markup Language — the standard markup language for web pages.</dd> <dt>CSS</dt> <dd>Cascading Style Sheets — describes how HTML elements are displayed.</dd> <dt>HTTP</dt> <dt>HTTPS</dt> <dd>Protocols for transferring data over the web. HTTPS is the secure version.</dd> </dl> <h2>Product Specs</h2> <dl> <dt>Battery</dt><dd>5000 mAh</dd> <dt>Display</dt><dd>6.5 inch AMOLED</dd> <dt>Camera</dt><dd>108 MP main + 12 MP ultra-wide</dd> </dl> </body> </html>
Result
Open