You can get multiple information about programing.

What is dl,dt and dd tag in html with example? - Programming info

What is dl,dt and dd tag in html with example?

What is dl,dt and dd tag in html

DL means description list.....its used to define the list.
DT means description term.....its used to define the name or term
DD means description data....its used to define the data of that word.
these three tags are used at same time.

lets starts practice:

<html>
<head>
<title> used of dd, dl, dt in html with example and abbreviation.</title>
<body>
<dl>
<dt> ROM</dt>
<dd>A simple example of ROM is the cartridge used in video game consoles that allows the system to run many games. The data which is stored permanently on personal computers and other electronic devices like smartphones, tablets, TV, AC, etc. is also an example of ROM
</dd>
</dl>
</body>
</html>

The result you get in that form ::

ROM:
A simple example of ROM is the cartridge used in video game consoles that allows the system to run many games. The data which is stored permanently on personal computers and other electronic devices like smartphones, tablets, TV, AC, etc. is also an example of ROM.
Next Post Previous Post