Ict Subject, Guys Can U Give Me An Ex. Of Formatting A Description List Using Html Any Example Just Tell Me How To Format It What I Need Is Descriptio
ICT SUBJECT
Guys can u give me an ex. of formatting a description list using html any example just tell me how to format it what i need is description list
This is how you format in html with description list
Where we use
<dl> defines the description list
<dt> which is the TERM
<dd> that describes EACH term
(This is just an example)
<html>
<body>
<h3> A description list</h3>
<dl>
<dt>The Promised Neverland
<dd> - Emma </dd>
<dt>One Punch Man</dt>
<dd> - Saitama</dd>
</dl>
</body>
</html>
Comments
Post a Comment