<p>This is a description of HTML and CSS.</p>
<dl>
    <dt><dfn>HTML</dfn></dt>
    <dd>
        An abbreviation for HyperText Markup Language,
        it is a markup language used to create web pages.
    </dd>
    <dt><dfn>CSS</dfn></dt>
    <dd>
        An abbreviation for Cascading Style Sheets,
        it is a stylesheet language used to define the style and layout of web pages.
    </dd>
</dl>
Rendered Output
<p>These are the most popular movie protagonists.</p>
<dl>
    <dt>Harry Potter</dt>
    <dd>
        The protagonist of the "Harry Potter" series by J.K. Rowling,
        a boy who experiences adventures as a wizard.
    </dd>
    <dt>Luke Skywalker</dt>
    <dd>
        A character who plays a major role in the "Star Wars" series,
        a Jedi Knight with powerful abilities.
    </dd>
</dl>
Rendered Output
<p>This describes a travel plan.</p>
<dl>
    <dt>Travel Purpose</dt>
    <dd>Rest, sightseeing, exploration, etc.</dd>
    <dt>Travel Duration</dt>
    <dd>Short trips (1–3 days), medium trips (4–7 days), long trips (8 days or more)</dd>
    <dt>Travel Budget</dt>
    <dd>Low budget, medium budget, high budget</dd>
</dl>
Rendered Output
<p>These are frequently asked questions and answers.</p>
<dl>
    <dt>Q: How can I purchase the product?</dt>
    <dd>A: You can purchase the product through the online store or at an offline retail store.</dd>
    <dt>Q: How do I use the product?</dt>
    <dd>A: You can refer to the manual or check the manufacturer’s website for instructions on how to use the product.</dd>
    <dt>Q: What should I do if there is a problem with the product?</dt>
    <dd>A: If there is a problem with the product, please contact the manufacturer’s customer support or service center.</dd>
 </dl>
Rendered Output
<p>This is an introduction to our company.</p>
<dl>
    <dt>Company Name</dt>
    <dd>Our Company</dd>
    <dt>Founded</dt>
    <dd>July 30, 2012</dd>
    <dt>Business Area</dt>
    <dd>Creating socially beneficial value</dd>
    <dt>Phone Number</dt>
    <dd>(123) 456-7890</dd>
    <dt>Business Description</dt>
    <dd>A coding tutorial for everyone.</dd>
</dl>
Rendered Output
<p>These are the most popular movie protagonists.</p>
<dl>
    <dt>Harry Potter</dt>
    <dd>
        The protagonist of the "Harry Potter" series by J.K. Rowling,
        a boy who experiences adventures as a wizard.
    </dd>
    <dt>Luke Skywalker</dt>
    <dd>
        A character who plays a major role in the "Star Wars" series,
        a Jedi Knight with powerful abilities.
    </dd>
</dl>
Rendered Output
<dl>
    <dt>United States</dt>
    <dt>United States of America</dt>
    <dd>A federal republic consisting of 50 states and 1 federal district.</dd>
</dl>
Rendered Output
<dl>
    <dt>Coffee</dt>
    <dd>A beverage made from the fruit of the coffee plant</dd>
    <dd>Nice! Iced Americano 😃</dd>
</dl>
Rendered Output
<style>
    .dl-item {
        padding: 1em;
        border-radius: 1em;
        background-color: beige;
    }
    .dl-item + .dl-item {
        margin-top: 1em;
    }
    .dl-item dt {
        font-weight: 600;
        margin-bottom: 0.3em;
    }
    .dl-item dd {
        margin: 0;
    }
</style>
<dl>
    <div class="dl-item">
        <dt>Name</dt>
        <dd>John Doe</dd>
    </div>
    <div class="dl-item">
        <dt>Year of Birth</dt>
        <dd>2002</dd>
    </div>
    <div class="dl-item">
        <dt>Place of Birth</dt>
        <dd>Los Angeles, United States</dd>
    </div>
    <div class="dl-item">
        <dt>Favorite Color</dt>
        <dd>Blue</dd>
    </div>
</dl>
Rendered Output