<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
<dl class="quiz">
    <dt>Which is the longest river in the world?</dt>
    <dd>
        <input type="radio" id="q1_choice1" name="q1" value="1">
        <label for="q1_choice1">Amazon River</label>
    </dd>
    <dd>
        <input type="radio" id="q1_choice2" name="q1" value="2">
        <label for="q1_choice2">Nile River</label>
    </dd>
    <dd>
        <input type="radio" id="q1_choice3" name="q1" value="3">
        <label for="q1_choice3">Yangtze River</label>
    </dd>
</dl>
<form>
    <fieldset>
        <legend>Which is the longest river in the world?</legend>
        <p>
            <input type="radio" id="q1_choice1" name="q1" value="1">
            <label for="q1_choice1">Amazon River</label>
        </p>
        <p>
            <input type="radio" id="q1_choice2" name="q1" value="2">
            <label for="q1_choice2">Nile River</label>
        </p>
        <p>
            <input type="radio" id="q1_choice3" name="q1" value="3">
            <label for="q1_choice3">Yangtze River</label>
        </p>
    </fieldset>
</form>
<dl>
    <dt>Menu</dt>
    <dd><a href="">About Us</a></dd>
    <dd><a href="">Products</a></dd>
    <dd><a href="">Contact</a></dd>
</dl>
<nav>
    <ul>
        <li><a href="">About Us</a></li>
        <li><a href="">Products</a></li>
        <li><a href="">Contact</a></li>
    </ul>
</nav>