Answers for "description list html"

2

html definition list

<dl>
  <lh>dl Header</lh>
  <dt>Term</dt>
	<dd>Definiton</dd>
  <dt>Term</dt>
	<dd>Definition</dd>
</dl>
Posted by: Guest on July-16-2020
0

description list html

<dl>
      <dt>Wat komt aan bod in Web Development I?</dt>
      <dd>HTML.</dd>
      <dd>CSS.</dd>
</dl>
Posted by: Guest on January-15-2021
-1

html description list

<!-- Description lists --> 
<!-- They are list of terms with their corresponding definitions -->

<dt>HTML</dt>
	<dd>Stands for Hyper Text Markup Language</dd>

<dt>CSS</dt>
	<dd>Stands for Cascading Style Sheets</dd>
Posted by: Guest on July-31-2020

Browse Popular Code Answers by Language