DEFINITION LIST

Web Pages
can be created and modified by using professional HTML editors. However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac).
We believe using a simple text editor is a good way to learn HTML. Follow the four steps below to create your first web page with Notepad or TextEdit.
Step 1: Open Notepad (PC)
Windows 8 or later: Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad. Windows 7 or earlier: Open Start > Programs > Accessories > Notepad

  Definition List

  Mainly used for defining words

  In some cases, it is used for Indentation

  Under 'Web Pages', explanation is indented

  Under 'Step 1 Open Notepad (PC), explanation is indented

  Format

        <dl> 
            <dt> Item 1
                <dd> Item 1 Explanaton
            <dt> Item 2
                <dd> Item 2 Explanaton-1
                <dd> Item 2 Explanaton-2
                <dd> Item 2 Explanaton-3
            <dt> Item 3
                <dd> Item 3 Explanaton
        </dl>
  To get the above result, input as follows

        <dl> 
            <dt> Web Pages
            <dd> can be created and modified by using professional HTML editors. However, 
                for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac).
            <dd> e believe using a simple text editor is a good way to learn HTML.
                Follow the four steps below to create your first web page with Notepad or TextEdit. 
            <dt> Step 1: Open Notepad (PC)
            <dd> Windows 8 or later: Open the Start Screen  (the window symbol at the bottom left on your screen). 
                Type Notepad. Windows 7 or earlier:  Open Start > Programs > Accessories > Notepad
        </dl>